Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion WayOSK/keyboard_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,10 @@ def listen_for_keys(self):
if not data:
continue

wk.click(data)
try:
wk.click(data)
except Exception as e:
print(f"Error sending key: {e}")

def cleanup(self):
if self.server:
Expand Down