diff --git a/tabbox/declarative.cpp b/tabbox/declarative.cpp index 81268d6738..ae93d06427 100644 --- a/tabbox/declarative.cpp +++ b/tabbox/declarative.cpp @@ -429,7 +429,10 @@ void DeclarativeView::slotWindowChanged(WId wId, unsigned int properties) bool DeclarativeView::sendKeyEvent(QKeyEvent *e) { - return event(e); + if (QQuickItem *item = rootObject()->findChild(QStringLiteral("listView"))) { + return sendEvent(item, e); + } + return false; } } // namespace TabBox