preparing settings to be used more
This commit is contained in:
parent
bbb9f910d0
commit
ad80604293
2 changed files with 12 additions and 1 deletions
|
@ -84,7 +84,15 @@ Kirigami.OverlaySheet {
|
|||
Kirigami.FormData.label: i18nc("@label:checkbox", "Debug")
|
||||
onClicked: {
|
||||
RSettings.debug = checked;
|
||||
console.log(RSettings.debug);
|
||||
Utils.dbg("Debugging: " + RSettings.debug);
|
||||
}
|
||||
}
|
||||
|
||||
Controls.CheckBox {
|
||||
Kirigami.FormData.label: i18nc("@label:checkbox", "Run Server")
|
||||
onClicked: {
|
||||
RSettings.runServer = checked;
|
||||
Utils.dbg("Server running: " + RSettings.runServer);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue