fix No globalshortcuts with popup grab
BUG: 431046
This commit is contained in:
parent
25b85607d0
commit
b45f5c3a66
1 changed files with 3 additions and 1 deletions
|
@ -2277,7 +2277,6 @@ void InputRedirection::setupInputFilters()
|
|||
}
|
||||
installInputEventFilter(new DragAndDropInputFilter);
|
||||
installInputEventFilter(new LockScreenFilter);
|
||||
installInputEventFilter(new PopupInputFilter);
|
||||
m_windowSelector = new WindowSelectorFilter;
|
||||
installInputEventFilter(m_windowSelector);
|
||||
}
|
||||
|
@ -2292,6 +2291,9 @@ void InputRedirection::setupInputFilters()
|
|||
if (hasGlobalShortcutSupport) {
|
||||
installInputEventFilter(new GlobalShortcutFilter);
|
||||
}
|
||||
if (waylandServer()) {
|
||||
installInputEventFilter(new PopupInputFilter);
|
||||
}
|
||||
installInputEventFilter(new DecorationEventFilter);
|
||||
installInputEventFilter(new InternalWindowEventFilter);
|
||||
if (waylandServer()) {
|
||||
|
|
Loading…
Reference in a new issue