We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08afa30 commit e1429e9Copy full SHA for e1429e9
zulipterminal/ui_tools/buttons.py
@@ -307,6 +307,11 @@ def mark_unmuted(self) -> None:
307
# All messages in this topic are read.
308
self.set_button_counts(0)
309
310
+ def keypress(self, size: urwid_Size, key: str) -> Optional[str]:
311
+ if is_command_key('TOGGLE_MUTE_TOPIC', key):
312
+ self.controller.topic_muting_confirmation_popup(self)
313
+ return super().keypress(size, key)
314
+
315
316
class UnreadPMButton(urwid.Button):
317
def __init__(self, user_id: int, email: str) -> None:
0 commit comments