Skip to content

Commit b9dd8dd

Browse files
zee-bitneiljp
authored andcommitted
bugfix: views: Fixed Exit Popup from Stream Members view.
This commit fixes the bug in StreamMembersView that prevented closing the current and super popup with super().keypress from within StreamMembersView. Follow-up bugfix for #856.
1 parent 6846f1f commit b9dd8dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

zulipterminal/ui_tools/views.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1158,7 +1158,7 @@ def __init__(self, controller: Any, stream_id: int) -> None:
11581158
widgets = self.make_table_with_categories(stream_users_content,
11591159
column_width)
11601160

1161-
super().__init__(controller, widgets, 'STREAM_MEMBERS', popup_width,
1161+
super().__init__(controller, widgets, 'STREAM_DESC', popup_width,
11621162
title)
11631163

11641164
def keypress(self, size: urwid_Size, key: str) -> str:

0 commit comments

Comments
 (0)