Experimental fix to hopefully let users who rebind their capslock key keep those settings while using Fenrir.

This commit is contained in:
Storm Dragon
2025-12-10 08:22:17 -05:00
parent f0bbcb8a38
commit 61868c94e5
2 changed files with 3 additions and 2 deletions

View File

@@ -4,5 +4,5 @@
# Fenrir TTY screen reader
# By Chrys, Storm Dragon, and contributors.
version = "2025.12.03"
version = "2025.12.10"
code_name = "testing"

View File

@@ -284,7 +284,8 @@ class driver(inputDriver):
)
event_fired = True
else:
if event.type in [2, 3]:
# Forward non-keyboard events: 2=EV_REL, 3=EV_ABS, 17=EV_LED
if event.type in [2, 3, 17]:
foreward = True
event = device.read_one()