summary refs log tree commit diff
path: root/resources/qml
diff options
context:
space:
mode:
authorNicolas Werner <nicolas.werner@hotmail.de>2022-10-07 10:04:08 +0200
committerNicolas Werner <nicolas.werner@hotmail.de>2022-10-07 10:04:08 +0200
commitf2f9359f7f4590b3ebf8c347bb0d6be73dcce05b (patch)
tree1ee1168f3535bde71c600bcd8533d193d694956c /resources/qml
parentAdd a slow way to search a room (diff)
downloadnheko-f2f9359f7f4590b3ebf8c347bb0d6be73dcce05b.tar.xz
Add a shortcut for search
Diffstat (limited to 'resources/qml')
-rw-r--r--resources/qml/TopBar.qml10
1 files changed, 8 insertions, 2 deletions
diff --git a/resources/qml/TopBar.qml b/resources/qml/TopBar.qml

index 716a5e10..4608da4d 100644 --- a/resources/qml/TopBar.qml +++ b/resources/qml/TopBar.qml
@@ -33,6 +33,11 @@ Pane { searchField.text = "" } + Shortcut { + sequence: StandardKey.Find + onActivated: searchButton.searchActive = !searchButton.searchActive + } + Layout.fillWidth: true implicitHeight: topLayout.height + Nheko.paddingMedium * 2 z: 3 @@ -268,8 +273,9 @@ Pane { image: ":/icons/icons/ui/search.svg" ToolTip.visible: hovered ToolTip.text: qsTr("Search this room") - onClicked: { - searchActive = !searchActive + onClicked: searchActive = !searchActive + + onSearchActiveChanged: { if (searchActive) { searchField.forceActiveFocus(); }