mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Add a shortcut for search
This commit is contained in:
parent
f1c1f18f81
commit
f2f9359f7f
1 changed files with 8 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue