Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
b28e9fd6 by wurstsalat at 2024-09-01T17:04:39+02:00
fix: ChatListStack: Fix default workspace id when getting current chat list
Fixes #11969
- - - - -
1 changed file:
- gajim/gtk/chat_list_stack.py
Changes:
=====================================
gajim/gtk/chat_list_stack.py
=====================================
@@ -120,7 +120,7 @@ def get_selected_chat(self) -> ChatListRow | None:
def get_current_chat_list(self) -> ChatList | None:
workspace_id = self.get_visible_child_name()
- if workspace_id == 'empty' or workspace_id is None:
+ if workspace_id == 'default' or workspace_id is None:
return None
return self._chat_lists[workspace_id]
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/b28e9fd63533bb9b9244db47aa536ab9ef622c11
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/b28e9fd63533bb9b9244db47aa536ab9ef622c11
You're receiving this email because of your account on dev.gajim.org.
_______________________________________________
Commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]