aboutsummaryrefslogtreecommitdiffstats
path: root/src/virtualkeyboard/content/components/ShiftKey.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/virtualkeyboard/content/components/ShiftKey.qml')
-rw-r--r--src/virtualkeyboard/content/components/ShiftKey.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/virtualkeyboard/content/components/ShiftKey.qml b/src/virtualkeyboard/content/components/ShiftKey.qml
index d7705d9f..d31a601a 100644
--- a/src/virtualkeyboard/content/components/ShiftKey.qml
+++ b/src/virtualkeyboard/content/components/ShiftKey.qml
@@ -44,9 +44,9 @@ import QtQuick.VirtualKeyboard 2.1
BaseKey {
id: shiftKey
key: Qt.Key_Shift
- enabled: InputContext.shiftHandler.toggleShiftEnabled
- highlighted: InputContext.capsLock
+ enabled: InputContext.priv.shiftHandler.toggleShiftEnabled
+ highlighted: InputContext.capsLockActive
functionKey: true
keyPanelDelegate: keyboard.style ? keyboard.style.shiftKeyPanel : undefined
- onClicked: InputContext.shiftHandler.toggleShift()
+ onClicked: InputContext.priv.shiftHandler.toggleShift()
}