Use new PCN format for settings config file

This commit is contained in:
miruka
2020-10-07 20:12:32 -04:00
parent 6ce3059322
commit db12036372
52 changed files with 1305 additions and 409 deletions

View File

@@ -25,7 +25,7 @@ HDrawer {
property string selectedOutputText: ""
property string pythonDebugKeybind:
window.settings.keys.startPythonDebugger[0]
window.settings.Keys.python_debugger[0]
property string help: qsTr(
`Interact with the QML code using JavaScript ES6 syntax.
@@ -71,7 +71,7 @@ HDrawer {
if (addToHistory && history.slice(-1)[0] !== input) {
history.push(input)
while (history.length > maxHistoryLength) history.shift()
window.historyChanged()
window.saveHistory()
}
let output = ""
@@ -154,7 +154,7 @@ HDrawer {
}
HShortcut {
sequences: settings.keys.toggleDebugConsole
sequences: settings.Keys.qml_console
onActivated: debugConsole.toggle()
}