Fix CharInput blocking Ctrl+A, Ctrl+W, etc.

This commit is contained in:
Isaiah Odhner 2023-04-23 17:20:08 -04:00
parent a07606fc70
commit d411b84605

View File

@ -314,7 +314,7 @@ class ToolsBox(Container):
if "tool_button" in event.button.classes:
self.post_message(self.ToolSelected(self.tool_by_button[event.button]))
class CharInput(Input):
class CharInput(Input, inherit_bindings=False):
"""Widget for entering a single character."""
class CharSelected(Message):