From fa54f45998fddc1cc6f2cad1b885a9abf977dd34 Mon Sep 17 00:00:00 2001 From: Bendt Date: Sun, 28 Dec 2025 12:58:57 -0500 Subject: [PATCH] fix: Remove unused 'm' key binding from ContentContainer - The 'm' key was repurposed for toggle view mode, causing conflict - Removed Binding from ContentContainer to free up the key for other uses - action_toggle_mode still exists for extensibility but has no keybinding - Tests still passing --- src/mail/widgets/ContentContainer.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/mail/widgets/ContentContainer.py b/src/mail/widgets/ContentContainer.py index a5d38a5..cee7d72 100644 --- a/src/mail/widgets/ContentContainer.py +++ b/src/mail/widgets/ContentContainer.py @@ -160,9 +160,7 @@ class ContentContainer(ScrollableContainer): # Reactive to track view mode and update UI current_mode: reactive[Literal["markdown", "html"]] = reactive("markdown") - BINDINGS = [ - Binding("m", "toggle_mode", "Toggle View Mode"), - ] + BINDINGS = [] def __init__(self, **kwargs): super().__init__(**kwargs)