Skip to content

Commit

Permalink
#4337 also map missing modifiers when using the defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Aug 22, 2024
1 parent 141a82a commit 905cf2e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions xpra/x11/server_keyboard_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -227,6 +227,8 @@ def compute_modifiers(self) -> None:
else:
log.info("client did not supply any modifier definitions, using defaults")
self.keynames_for_mod = get_modifiers_from_meanings(DEFAULT_MODIFIER_MEANINGS)
if MAP_MISSING_MODIFIERS:
map_missing_modifiers(self.keynames_for_mod)
log("compute_modifiers() keynames_for_mod=%s", self.keynames_for_mod)
log("compute_modifiers() keycodes_for_modifier_keynames=%s", self.keycodes_for_modifier_keynames)
log("compute_modifiers() mod_meanings=%s", self.mod_meanings)
Expand Down

0 comments on commit 905cf2e

Please sign in to comment.