Преглед на файлове

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