aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/quicktemplates2/qquickaction.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/quicktemplates2/qquickaction.cpp b/src/quicktemplates2/qquickaction.cpp
index dbe64121..cdc7336e 100644
--- a/src/quicktemplates2/qquickaction.cpp
+++ b/src/quicktemplates2/qquickaction.cpp
@@ -506,7 +506,7 @@ bool QQuickAction::event(QEvent *event)
{
Q_D(QQuickAction);
if (event->type() != QEvent::Shortcut)
- return false;
+ return QObject::event(event);
return d->handleShortcutEvent(this, static_cast<QShortcutEvent *>(event));
}