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 a82fa3d commit f2fe975Copy full SHA for f2fe975
zulipterminal/ui_tools/buttons.py
@@ -309,6 +309,11 @@ def mark_unmuted(self) -> None:
309
# All messages in this topic are read.
310
self.set_button_counts(0)
311
312
+ def keypress(self, size: urwid_Size, key: str) -> Optional[str]:
313
+ if is_command_key('TOGGLE_MUTE_TOPIC', key):
314
+ self.controller.topic_muting_confirmation_popup(self)
315
+ return super().keypress(size, key)
316
+
317
318
class UnreadPMButton(urwid.Button):
319
def __init__(self, user_id: int, email: str) -> None:
0 commit comments