From ea40440d72dcf25ca90871a8bd81e8150481ddac Mon Sep 17 00:00:00 2001 From: NamedKitten Date: Fri, 30 Nov 2018 16:57:29 +0000 Subject: [PATCH] [UI] Added scale keybinds. --- src/qml/main.qml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/qml/main.qml b/src/qml/main.qml index 7605bb7..5042e67 100644 --- a/src/qml/main.qml +++ b/src/qml/main.qml @@ -92,6 +92,8 @@ Window { property string increaseVolume: "*" property string decreaseVolume: "/" property string mute: "m" + property string increaseScale: "Ctrl+Shift+=" + property string decreaseScale: "Ctrl+Shift+-" property string customKeybind0: "" property string customKeybind0Command: "" property string customKeybind1: "" @@ -242,13 +244,13 @@ Window { onTriggered: { appearance.scaleFactor += 0.1 } - shortcut: "Ctrl+Shift+=" + shortcut: appearance.increaseScale } Action { onTriggered: { appearance.scaleFactor -= 0.1 } - shortcut: "Ctrl+Shift+-" + shortcut: appearance.decreaseScale } MouseArea {