Daniel Brötzmann pushed to branch master at gajim / gajim
Commits:
498373a7 by wurstsalat at 2025-09-16T23:07:21+02:00
fix: Preferences: Fix updating proxy list
Fixes #12465
- - - - -
1 changed file:
- gajim/gtk/settings.py
Changes:
=====================================
gajim/gtk/settings.py
=====================================
@@ -189,7 +189,9 @@ def __init__(
self._groups: list[GajimPreferencesGroup] = []
for group in groups:
- self._pref_page.add(group())
+ preference_group = group()
+ self._groups.append(preference_group)
+ self._pref_page.add(preference_group)
def do_unroot(self) -> None:
Adw.NavigationPage.do_unroot(self)
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/498373a7e95d5cc1d4dec63ccfdb52a848e054f7
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/498373a7e95d5cc1d4dec63ccfdb52a848e054f7
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]