From bcdf0cea17d0b0f1e04079b788c8877affac1c4a Mon Sep 17 00:00:00 2001 From: fde-capu Date: Sun, 2 Mar 2025 21:20:37 -0300 Subject: [PATCH] Steeper step and max correction. --- app/qml/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/qml/main.qml b/app/qml/main.qml index 3d76e54..9586ced 100644 --- a/app/qml/main.qml +++ b/app/qml/main.qml @@ -29,7 +29,7 @@ ApplicationWindow { width: 1024 height: 768 - property real keybindStep: 0.005 + property real keybindStep: 0.01 // Save window properties automatically onXChanged: appSettings.x = x @@ -143,7 +143,7 @@ ApplicationWindow { text: qsTr("Make more opaque.") shortcut: "Ctrl+Shift+Down" onTriggered: { - appSettings.windowOpacity += appSettings.windowOpacity < (2 - keybindStep) ? keybindStep : 0 + appSettings.windowOpacity += appSettings.windowOpacity < (1 - keybindStep) ? keybindStep : 0 } } Action {