preparing settings to be used more

This commit is contained in:
Chris Cochrun 2024-06-17 17:05:41 -05:00
parent bbb9f910d0
commit ad80604293
2 changed files with 12 additions and 1 deletions

View file

@ -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);
}
}