diff --git a/input.cpp b/input.cpp --- a/input.cpp +++ b/input.cpp @@ -416,7 +416,7 @@ 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;