diff options
author | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-06-02 22:44:47 +0200 |
---|---|---|
committer | Nicolas Werner <nicolas.werner@hotmail.de> | 2023-06-08 22:32:09 +0200 |
commit | 05ba0c8835b5b1875bea24d68cfd78db1c05ab85 (patch) | |
tree | a18ab86a108ba3955a94956bc778a2e7d22651ad /resources/qml | |
parent | Fix QChar range (diff) | |
download | nheko-05ba0c8835b5b1875bea24d68cfd78db1c05ab85.tar.xz |
Bump mtxclient dep
Diffstat (limited to 'resources/qml')
-rw-r--r-- | resources/qml/QuickSwitcher.qml | 2 |
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(); |