Fix keyboard shortcuts for shifted punctuation and letters
- Preserve Shift+R semantics for DNS refresh - Resolve shifted punctuation by produced text across layouts - Expand keyboard binding coverage tests
This commit is contained in:
parent
9040cf72a8
commit
d4130c332a
4 changed files with 124 additions and 2 deletions
|
|
@ -704,7 +704,7 @@ class TestHostsManagerApp:
|
|||
for binding in app.BINDINGS:
|
||||
if hasattr(binding, "key"):
|
||||
# Binding object
|
||||
binding_keys.append(binding.key)
|
||||
binding_keys.extend(str(binding.key).split(","))
|
||||
elif isinstance(binding, tuple) and len(binding) >= 1:
|
||||
# Tuple format (key, action, description)
|
||||
binding_keys.append(binding[0])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue