1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Fix CapsLock preventing use of single-letter keybindings (issue #141)

The code block in question can be removed because Tk will decide whether it
reports us an event with e.g. Ctrl-R or just the R key.

https://www.tcl.tk/man/tcl8.4/TkCmd/bind.html
in section MULTIPLE MATCHES; "[...] the most specific binding is chosen [...]"
This commit is contained in:
Juhani Numminen 2021-07-08 12:20:37 +03:00
parent e1ca461333
commit e04440a625

View file

@ -759,15 +759,6 @@ class PysolMenubarTkCommon:
#
def _bindKey(self, modifier, key, func):
# if 0 and not modifier and len(key) == 1:
# self.keybindings[key.lower()] = func
# self.keybindings[key.upper()] = func
# return
if not modifier and len(key) == 1:
# ignore Ctrl/Shift/Alt
# but don't ignore NumLock (state == 16)
def func(e, f2=func):
return e.state in (0, 16) and f2(e)
sequence = "<" + modifier + "KeyPress-" + key + ">"
bind(self.top, sequence, func)
if len(key) == 1 and key != key.upper():