settings: more options

This commit is contained in:
end-4
2025-06-23 01:35:08 +02:00
parent 5991c8f994
commit ced0f6efb1
2 changed files with 109 additions and 3 deletions
+2 -3
View File
@@ -56,8 +56,8 @@ ApplicationWindow {
minimumWidth: 600
minimumHeight: 400
width: 900
height: 650
width: 1100
height: 750
color: Appearance.m3colors.m3background
ColumnLayout {
@@ -67,7 +67,6 @@ ApplicationWindow {
}
Keys.onPressed: (event) => {
console.log(`Key pressed: ${event.key}, Modifiers: ${event.modifiers}`);
if (event.modifiers === Qt.ControlModifier) {
if (event.key === Qt.Key_PageDown) {
root.currentPage = Math.min(root.currentPage + 1, root.pages.length - 1)