Skip to content
Snippets Groups Projects
Commit 61aaa3c6 authored by Pierre Lamot's avatar Pierre Lamot Committed by Jean-Baptiste Kempf
Browse files

qt: add missing search shortcut

shortcut did exists in VLC 3.0

fix: #25892
parent 1f5c0b6c
No related branches found
No related tags found
1 merge request!796qt: add missing search shortcut
Pipeline #149942 passed with stage
in 13 minutes and 49 seconds
......@@ -75,7 +75,8 @@ public:
{
return event->key() == Qt::Key_Search
|| event->key() == Qt::Key_Slash
|| ( (event->modifiers() & Qt::ControlModifier) && event->key() == Qt::Key_F );
|| ( (event->modifiers() == Qt::ControlModifier) && event->key() == Qt::Key_K ) //global search
|| ( (event->modifiers() == Qt::ControlModifier) && event->key() == Qt::Key_F ); //local search
}
static bool matchCancel(const QKeyEvent* event)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment