Skip to content

Commit 831cdad

Browse files
committed
Add delay to fix incorrect capturing of LEFTSHIFT key presses
See GitHub issue for more details: gvalkov/python-evdev#209
1 parent 1284b16 commit 831cdad

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

onthefly/onthefly.py

+3
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,17 @@ def read_config_keyboard_device_path(filepath):
6666

6767
def simulate_key(ui, code, keystate):
6868
ui.write(ecodes.EV_KEY, code, keystate)
69+
time.sleep(0.005) # TEMP: fixes bug (see: https://github.com/gvalkov/python-evdev/issues/209)
6970
ui.syn()
7071

7172
def simulate_key_press(ui, code):
7273
ui.write(ecodes.EV_KEY, code, 1)
74+
time.sleep(0.005) # TEMP: fixes bug (see: https://github.com/gvalkov/python-evdev/issues/209)
7375
ui.syn()
7476

7577
def simulate_key_release(ui, code):
7678
ui.write(ecodes.EV_KEY, code, 0)
79+
time.sleep(0.005) # TEMP: fixes bug (see: https://github.com/gvalkov/python-evdev/issues/209)
7780
ui.syn()
7881

7982
def simulate_key_stroke(ui, code):

0 commit comments

Comments
 (0)