瀏覽代碼

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