Merge branch 'Plasma/5.6'
This commit is contained in:
commit
c6f3fccdab
1 changed files with 3 additions and 2 deletions
|
@ -492,7 +492,8 @@ public:
|
||||||
if (!TabBox::TabBox::self() || !TabBox::TabBox::self()->isGrabbed()) {
|
if (!TabBox::TabBox::self() || !TabBox::TabBox::self()->isGrabbed()) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
TabBox::TabBox::self()->keyPress(event->modifiers() | event->key());
|
if (event->type() == QEvent::KeyPress)
|
||||||
|
TabBox::TabBox::self()->keyPress(event->modifiers() | event->key());
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
bool wheelEvent(QWheelEvent *event) override {
|
bool wheelEvent(QWheelEvent *event) override {
|
||||||
|
@ -868,10 +869,10 @@ void InputRedirection::setupInputFilters()
|
||||||
installInputEventFilter(new ScreenEdgeInputFilter);
|
installInputEventFilter(new ScreenEdgeInputFilter);
|
||||||
installInputEventFilter(new EffectsFilter);
|
installInputEventFilter(new EffectsFilter);
|
||||||
installInputEventFilter(new MoveResizeFilter);
|
installInputEventFilter(new MoveResizeFilter);
|
||||||
installInputEventFilter(new GlobalShortcutFilter);
|
|
||||||
#ifdef KWIN_BUILD_TABBOX
|
#ifdef KWIN_BUILD_TABBOX
|
||||||
installInputEventFilter(new TabBoxInputFilter);
|
installInputEventFilter(new TabBoxInputFilter);
|
||||||
#endif
|
#endif
|
||||||
|
installInputEventFilter(new GlobalShortcutFilter);
|
||||||
installInputEventFilter(new InternalWindowEventFilter);
|
installInputEventFilter(new InternalWindowEventFilter);
|
||||||
installInputEventFilter(new DecorationEventFilter);
|
installInputEventFilter(new DecorationEventFilter);
|
||||||
if (waylandServer()) {
|
if (waylandServer()) {
|
||||||
|
|
Loading…
Reference in a new issue