Explorar el Código

Disable synthetic key repeat

Matt Seeley hace 7 años
padre
commit
3f545aaad5
Se han modificado 2 ficheros con 3 adiciones y 3 borrados
  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() && !kevent->isAutoRepeat())
+    if (kevent->spontaneous())
     {
       InputKeyboard::Get().keyPress(keyEventToKeyString(kevent), keystatus);
       return true;