summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-06-02 22:44:47 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-06-08 22:32:09 +0200
commit05ba0c8835b5b1875bea24d68cfd78db1c05ab85 (patch)
treea18ab86a108ba3955a94956bc778a2e7d22651ad /resources/qml
parentFix QChar range (diff)
downloadnheko-05ba0c8835b5b1875bea24d68cfd78db1c05ab85.tar.xz
Bump mtxclient dep
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/QuickSwitcher.qml2
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/qml/QuickSwitcher.qml b/resources/qml/QuickSwitcher.qml
index 9ccefdec..bd2628bb 100644
--- a/resources/qml/QuickSwitcher.qml
+++ b/resources/qml/QuickSwitcher.qml
@@ -41,7 +41,7 @@ Popup {
             font.pixelSize: Math.ceil(quickSwitcher.textHeight * 0.6)
             width: parent.width
 
-            Keys.onPressed: {
+            Keys.onPressed: (event) => {
                 if (event.key == Qt.Key_Up || event.key == Qt.Key_Backtab) {
                     event.accepted = true;
                     completerPopup.up();