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


Commits:
4b1dec40 by wurstsalat at 2025-07-06T09:52:42+02:00
fix: Status icon: Call shutdown when handling Gajim core shutdown

- - - - -


1 changed file:

- gajim/common/application.py


Changes:

=====================================
gajim/common/application.py
=====================================
@@ -215,8 +215,6 @@ def end_profiling(self) -> None:
         ps.print_stats()
 
     def start_shutdown(self) -> None:
-        app.app.systray.shutdown()
-
         accounts_to_disconnect: dict[str, Client] = {}
 
         for client in app.get_clients():
@@ -247,7 +245,9 @@ def _shutdown_core(self) -> None:
         app.storage.cache.shutdown()
         app.storage.archive.shutdown()
         app.settings.shutdown()
+
         self.end_profiling()
+        app.app.systray.shutdown()
         configpaths.cleanup_temp()
         logind.shutdown()
 



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

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