Переглянути джерело

Adjust InputLIRC to match new InputComponent.
This fixes the autorepeat issue with IR & autorepeat

LongChair 9 роки тому
батько
коміт
8ac265ea33
1 змінених файлів з 2 додано та 1 видалено
  1. 2 1
      src/input/InputLIRC.cpp

+ 2 - 1
src/input/InputLIRC.cpp

@@ -107,7 +107,8 @@ void InputLIRC::read(int handle)
       // it makes GUI unusable
       if ((repeatCount % 3) == 0)
       {
-        emit receivedInput("LIRC", command);
+        bool up = (command.endsWith("_UP") && (command != "KEY_UP"));
+        emit receivedInput("LIRC", command, !up);
       }
     }
     else