소스 검색

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