Skip to content

Commit 395c3ca

Browse files
committed
fix(AppMain): unbreak the Ctrl+F shortcut collision
- Browser has its own "Find" action/shortcut Fixes #19349
1 parent 12686b5 commit 395c3ca

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ui/app/mainui/AppMain.qml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2454,8 +2454,9 @@ Item {
24542454
}
24552455
}
24562456
Shortcut {
2457-
sequence: "Ctrl+F"
2457+
sequence: StandardKey.Find
24582458
context: Qt.ApplicationShortcut
2459+
enabled: d.activeSectionType !== Constants.appSection.browser // has its own "Search"
24592460
onActivated: {
24602461
if (appSearch.active) {
24612462
appSearch.closeSearchPopup()

0 commit comments

Comments
 (0)