Skip to content

Commit

Permalink
chore: clear search text when switching mode
Browse files Browse the repository at this point in the history
  • Loading branch information
zsien committed Jun 12, 2024
1 parent 66ed09b commit 31c56d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions qml/FullscreenFrame.qml
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ Control {

icon.name: "launcher_exit_fullscreen"
onClicked: {
searchEdit.text = ""
LauncherController.currentFrame = "WindowedFrame"
}
}
Expand Down
1 change: 1 addition & 0 deletions qml/windowed/BottomBar.qml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,7 @@ Control {
Accessible.name: "Fullscreen"
Layout.alignment: Qt.AlignRight | Qt.AlignVCenter
onClicked: {
searchEdit.text = ""
LauncherController.currentFrame = "FullscreenFrame"
}
KeyNavigation.tab: nextKeyTabTarget
Expand Down

0 comments on commit 31c56d1

Please sign in to comment.