Daniel Brötzmann pushed to branch master at gajim / gajim


Commits:
e460cdf7 by wurstsalat at 2025-08-21T20:43:29+02:00
cfix: Group chat info: Clear features listbox before adding rows

- - - - -


1 changed file:

- gajim/gtk/groupchat_info.py


Changes:

=====================================
gajim/gtk/groupchat_info.py
=====================================
@@ -30,6 +30,7 @@
 from gajim.gtk.builder import get_builder
 from gajim.gtk.contact_name_widget import ContactNameWidget
 from gajim.gtk.util.classes import SignalManager
+from gajim.gtk.util.misc import clear_listbox
 from gajim.gtk.util.misc import container_remove_all
 
 log = logging.getLogger("gajim.gtk.groupchat_info")
@@ -268,6 +269,7 @@ def _add_features(self, features: list[str]) -> None:
         if Namespace.MAM_2 in features:
             features.append("mam")
 
+        clear_listbox(self._ui.features_listbox)
         for feature in MUC_FEATURES:
             if feature in features:
                 icon, title, subtitle = MUC_FEATURES.get(feature, (None, None, 
None))



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

-- 
View it on GitLab: 
https://dev.gajim.org/gajim/gajim/-/commit/e460cdf70ee59714664836a812d24d66135ca024
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]

Reply via email to