DolphinQt: Make Ctrl+F show the game list search and select the search text if already open. Escape closes.

This commit is contained in:
Jordan Woyak 2019-03-17 16:08:59 -05:00
parent 8713a752f3
commit 94c4975b5d
5 changed files with 40 additions and 12 deletions

View file

@ -473,7 +473,7 @@ void MenuBar::AddViewMenu()
view_menu->addSeparator();
view_menu->addAction(tr("Purge Game List Cache"), this, &MenuBar::PurgeGameListCache);
view_menu->addSeparator();
view_menu->addAction(tr("Search"), this, &MenuBar::ToggleSearch,
view_menu->addAction(tr("Search"), this, &MenuBar::ShowSearch,
QKeySequence(QStringLiteral("Ctrl+F")));
}