Fix Ctrl+Shift+, opening settings

BUG: 469057
This commit is contained in:
Tobias Fella
2023-04-28 01:06:53 +02:00
parent 224bc9441b
commit 7d2edc7c52

View File

@@ -383,4 +383,11 @@ Kirigami.ApplicationWindow {
color: Kirigami.Theme.backgroundColor
}
}
Shortcut {
sequence: "Ctrl+Shift+,"
onActivated: {
pageStack.pushDialogLayer("qrc:/SettingsPage.qml")
}
}
}