mirror of
https://github.com/mofeng-git/One-KVM.git
synced 2026-01-29 00:51:53 +08:00
minor 3.7 fixes
This commit is contained in:
@@ -130,10 +130,11 @@ def _read_keyboard_layout(path: str) -> Dict[int, At1Key]: # Keysym to evdev (a
|
||||
ctrl=("ctrl" in rest),
|
||||
)
|
||||
|
||||
x11_code = _resolve_keysym(parts[0].upper())
|
||||
if "addupper" in rest and x11_code != 0:
|
||||
layout[x11_code] = At1Key(
|
||||
code=at1_code,
|
||||
shift=True,
|
||||
)
|
||||
if "addupper" in rest:
|
||||
x11_code = _resolve_keysym(parts[0].upper())
|
||||
if x11_code != 0:
|
||||
layout[x11_code] = At1Key(
|
||||
code=at1_code,
|
||||
shift=True,
|
||||
)
|
||||
return layout
|
||||
|
||||
Reference in New Issue
Block a user