Sfoglia il codice sorgente

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

LongChair 9 anni fa
parent
commit
8ac265ea33
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  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