Преглед изворни кода

Revert "Disable synthetic key repeat"

This reverts commit dd5142779650f4b2fe25f46c320052400212c201.
Matt Seeley пре 7 година
родитељ
комит
1f9454dd6a
2 измењених фајлова са 3 додато и 3 уклоњено
  1. 2 2
      src/input/InputComponent.cpp
  2. 1 1
      src/ui/EventFilter.cpp

+ 2 - 2
src/input/InputComponent.cpp

@@ -211,8 +211,8 @@ void InputComponent::remapInput(const QString &source, const QString &keycode, I
     }
   }
 
-  // if (!m_autoRepeatActions.isEmpty() && keyState != InputBase::KeyPressed)
-  //   m_autoRepeatTimer->start(INITAL_AUTOREPEAT_MSEC);
+  if (!m_autoRepeatActions.isEmpty() && keyState != InputBase::KeyPressed)
+    m_autoRepeatTimer->start(INITAL_AUTOREPEAT_MSEC);
 
   if (!queuedActions.isEmpty())
   {

+ 1 - 1
src/ui/EventFilter.cpp

@@ -131,7 +131,7 @@ bool EventFilter::eventFilter(QObject* watched, QEvent* event)
       m_currentKeyDown = false;
 
     system.setCursorVisibility(false);
-    if (kevent->spontaneous())
+    if (kevent->spontaneous() && !kevent->isAutoRepeat())
     {
       InputKeyboard::Get().keyPress(keyEventToKeyString(kevent), keystatus);
       return true;