Removing Settings submenu.
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
fefb0f92b0
commit
997a1645a0
1 changed files with 0 additions and 99 deletions
|
@ -127,105 +127,6 @@ MenuBar {
|
|||
}
|
||||
}
|
||||
|
||||
Menu {
|
||||
id: settingsSubMenu
|
||||
title: qsTr("&Settings")
|
||||
Action {
|
||||
id: checkForUpdatesMenuSetting
|
||||
text: qsTr("Check for updates on startup")
|
||||
checkable: true
|
||||
checked: Helper.getSettingBool("check_for_updates")
|
||||
onTriggered: Helper.setSettingBool("check_for_updates", checked)
|
||||
icon.name: 'update'
|
||||
icon.color: sysPalette.buttonText
|
||||
}
|
||||
|
||||
Action {
|
||||
id: resetRedoStackMenuSetting
|
||||
text: qsTr("Reset redo stack automaticly")
|
||||
checkable: true
|
||||
checked: Helper.getSettingBool("reset_redo_stack")
|
||||
onTriggered: Helper.setSettingBool("reset_redo_stack", checked)
|
||||
icon.name: 'timeline'
|
||||
icon.color: sysPalette.buttonText
|
||||
}
|
||||
|
||||
Action {
|
||||
id: enableLatexJSSetting
|
||||
text: qsTr("Enable LaTeX rendering")
|
||||
checkable: true
|
||||
checked: Helper.getSettingBool("enable_latex")
|
||||
onTriggered: {
|
||||
Helper.setSettingBool("enable_latex", checked)
|
||||
Modules.Latex.enabled = checked
|
||||
drawCanvas.requestPaint()
|
||||
}
|
||||
icon.name: 'Expression'
|
||||
icon.color: sysPalette.buttonText
|
||||
}
|
||||
|
||||
Menu {
|
||||
title: qsTr("Expression editor")
|
||||
|
||||
Action {
|
||||
id: autocloseFormulaSetting
|
||||
text: qsTr("Automatically close parenthesises and brackets")
|
||||
checkable: true
|
||||
checked: Helper.getSettingBool("expression_editor.autoclose")
|
||||
onTriggered: {
|
||||
Helper.setSettingBool("expression_editor.autoclose", checked)
|
||||
}
|
||||
icon.name: 'Text'
|
||||
icon.color: sysPalette.buttonText
|
||||
}
|
||||
|
||||
Action {
|
||||
id: colorizeFormulaSetting
|
||||
text: qsTr("Enable syntax highlighting")
|
||||
checkable: true
|
||||
checked: Helper.getSettingBool("expression_editor.colorize")
|
||||
onTriggered: {
|
||||
Helper.setSettingBool("expression_editor.colorize", checked)
|
||||
}
|
||||
icon.name: 'appearance'
|
||||
icon.color: sysPalette.buttonText
|
||||
}
|
||||
|
||||
Action {
|
||||
id: autocompleteFormulaSetting
|
||||
text: qsTr("Enable autocompletion")
|
||||
checkable: true
|
||||
checked: Helper.getSettingBool("autocompletion.enabled")
|
||||
onTriggered: {
|
||||
Helper.setSettingBool("autocompletion.enabled", checked)
|
||||
}
|
||||
icon.name: 'label'
|
||||
icon.color: sysPalette.buttonText
|
||||
}
|
||||
|
||||
Menu {
|
||||
id: colorSchemeSetting
|
||||
title: qsTr("Color Scheme")
|
||||
property var schemes: ["Breeze Light", "Breeze Dark", "Solarized", "Github Light", "Github Dark", "Nord", "Monokai"]
|
||||
|
||||
Repeater {
|
||||
model: colorSchemeSetting.schemes
|
||||
|
||||
MenuItem {
|
||||
text: modelData
|
||||
checkable: true
|
||||
checked: Helper.getSettingInt("expression_editor.color_scheme") == index
|
||||
onTriggered: {
|
||||
parent.children[Helper.getSettingInt("expression_editor.color_scheme")].checked = false
|
||||
checked = true
|
||||
Helper.setSettingInt("expression_editor.color_scheme", index)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Menu {
|
||||
title: qsTr("&Help")
|
||||
Action {
|
||||
|
|
Loading…
Reference in a new issue