From e04440a6251742981967c54b8e360e0cb5c29439 Mon Sep 17 00:00:00 2001 From: Juhani Numminen Date: Thu, 8 Jul 2021 12:20:37 +0300 Subject: [PATCH] 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 [...]" --- pysollib/ui/tktile/menubar.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/pysollib/ui/tktile/menubar.py b/pysollib/ui/tktile/menubar.py index 0d6f1c32..1526a726 100644 --- a/pysollib/ui/tktile/menubar.py +++ b/pysollib/ui/tktile/menubar.py @@ -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():