Philipp Hörist pushed to branch master at gajim / gajim


Commits:
e0900133 by Philipp Hörist at 2023-04-24T22:14:21+02:00
cfix: GroupchatRoster: Open correct chat on row activate

- - - - -


1 changed file:

- gajim/gtk/groupchat_roster.py


Changes:

=====================================
gajim/gtk/groupchat_roster.py
=====================================
@@ -386,7 +386,10 @@ def _on_roster_row_activated(self,
                                  _column: Gtk.TreeViewColumn
                                  ) -> None:
 
-        iter_ = self._store.get_iter(path)
+        child_path = self._modelfilter.convert_path_to_child_path(path)
+        assert child_path is not None
+
+        iter_ = self._store.get_iter(child_path)
         if self._store.iter_parent(iter_) is None:
             # This is a group row
             return



View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/e0900133d165e31fe6f0066dbb33daf7dc67e7c7

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/e0900133d165e31fe6f0066dbb33daf7dc67e7c7
You're receiving this email because of your account on dev.gajim.org.


_______________________________________________
Commits mailing list
[email protected]
https://lists.gajim.org/cgi-bin/listinfo/commits

Reply via email to