diff --git a/input.cpp b/input.cpp index a6de0bd8bb..81630ad3dd 100644 --- a/input.cpp +++ b/input.cpp @@ -416,7 +416,7 @@ public: return input()->shortcuts()->processAxis(event->modifiers(), direction); } bool keyEvent(QKeyEvent *event) override { - if (event->type() == QEvent::KeyPress && !event->isAutoRepeat()) { + if (event->type() == QEvent::KeyPress) { return input()->shortcuts()->processKey(event->modifiers(), event->nativeVirtualKey()); } return false;