Skip to content

Commit

Permalink
#4449 fix debug logging
Browse files Browse the repository at this point in the history
  • Loading branch information
totaam committed Dec 22, 2024
1 parent 1db148c commit af67943
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xpra/gtk/keymap.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_gtk_keymap(ignore_keys=("", "VoidSymbol", "0xffffff")) -> Sequence[tuple
keymap = get_default_keymap()
if not keymap:
return ()
log("get_default_keymap()=%s, direction=%s, bidirectional layouts: %s",
log("get_default_keymap(%s)=%s, direction=%s, bidirectional layouts: %s",
ignore_keys, keymap, keymap.get_direction(), keymap.have_bidi_layouts())
keycodes: list[tuple[int, str, int, int, int]] = []
for i in range(0, 2 ** 8):
Expand Down

0 comments on commit af67943

Please sign in to comment.