mirror of
https://github.com/Swordfish90/cool-retro-term.git
synced 2025-11-27 15:54:09 +00:00
Steeper step and max correction.
This commit is contained in:
parent
a42c6a1ebb
commit
bcdf0cea17
@ -29,7 +29,7 @@ ApplicationWindow {
|
|||||||
width: 1024
|
width: 1024
|
||||||
height: 768
|
height: 768
|
||||||
|
|
||||||
property real keybindStep: 0.005
|
property real keybindStep: 0.01
|
||||||
|
|
||||||
// Save window properties automatically
|
// Save window properties automatically
|
||||||
onXChanged: appSettings.x = x
|
onXChanged: appSettings.x = x
|
||||||
@ -143,7 +143,7 @@ ApplicationWindow {
|
|||||||
text: qsTr("Make more opaque.")
|
text: qsTr("Make more opaque.")
|
||||||
shortcut: "Ctrl+Shift+Down"
|
shortcut: "Ctrl+Shift+Down"
|
||||||
onTriggered: {
|
onTriggered: {
|
||||||
appSettings.windowOpacity += appSettings.windowOpacity < (2 - keybindStep) ? keybindStep : 0
|
appSettings.windowOpacity += appSettings.windowOpacity < (1 - keybindStep) ? keybindStep : 0
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Action {
|
Action {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user