fixed unshifted default keys

This commit is contained in:
Devaev Maxim 2020-05-23 16:01:13 +03:00
parent e9d86c058d
commit 4737f9d558

View File

@ -49,7 +49,7 @@ def build_symmap(path: str) -> Dict[int, SymmapWebKey]:
for (x11_code, at1_key) in X11_TO_AT1.items():
symmap[x11_code] = SymmapWebKey(
name=AT1_TO_WEB[at1_key.code],
shift=False,
shift=at1_key.shift,
)
for (x11_code, at1_key) in _read_keyboard_layout(path).items():