summary refs log tree commit diff
path: root/resources/qml/QuickSwitcher.qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2023-06-02 23:03:56 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2023-06-08 22:32:10 +0200
commitd2c616ee67f5bf33f83c4652dfd3d142439ef65e (patch)
tree51187a146e70ce15b474ee638f12e0885ad366bf /resources/qml/QuickSwitcher.qml
parentBump mtxclient dep (diff)
downloadnheko-d2c616ee67f5bf33f83c4652dfd3d142439ef65e.tar.xz
Fix request for empty image
Diffstat (limited to 'resources/qml/QuickSwitcher.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 bd2628bb..90e6560c 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: (event) => { + Keys.onPressed: event => { if (event.key == Qt.Key_Up || event.key == Qt.Key_Backtab) { event.accepted = true; completerPopup.up();