Forward keyPressEvent to super class

Otherwise things like KRunner while typing on empty desktop breaks

Thanks Fabian Vogt for noticing
This commit is contained in:
Kai Uwe Broulik 2017-03-07 16:56:13 +01:00
parent bbcb217b48
commit fe3fd0cf17

View File

@ -1052,6 +1052,8 @@ void ContainmentInterface::keyPressEvent(QKeyEvent *event)
mousePressEvent(&me);
event->accept();
}
AppletInterface::keyPressEvent(event);
}
void ContainmentInterface::addAppletActions(QMenu *desktopMenu, Plasma::Applet *applet, QEvent *event)