Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'gajim/gtk/chat_list.py')
-rw-r--r--gajim/gtk/chat_list.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/gajim/gtk/chat_list.py b/gajim/gtk/chat_list.py
index 14412b854..1d4c07be7 100644
--- a/gajim/gtk/chat_list.py
+++ b/gajim/gtk/chat_list.py
@@ -279,6 +279,9 @@ class ChatList(Gtk.ListBox, EventHelper):
assert isinstance(row, ChatListRow)
self.select_chat(row.account, row.jid)
+ def get_chat_list_rows(self) -> list[ChatListRow]:
+ return cast(list[ChatListRow], self.get_children())
+
def remove_chat(self,
account: str,
jid: JID,