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


Commits:
97d52ec4 by Philipp Hörist at 2024-10-05T00:09:59+02:00
refacotr: call show

- - - - -


3 changed files:

- gajim/gtk/blocking.py
- gajim/gtk/mam_preferences.py
- gajim/gtk/preferences.py


Changes:

=====================================
gajim/gtk/blocking.py
=====================================
@@ -49,6 +49,8 @@ def __init__(self, account: str) -> None:
         self._client.get_module('Blocking').request_blocking_list(
             callback=self._on_blocking_list_received)
 
+        self.show()
+
     def _show_error(self, error: str) -> None:
         ErrorDialog(_('Error!'), error)
 


=====================================
gajim/gtk/mam_preferences.py
=====================================
@@ -53,6 +53,8 @@ def __init__(self, account: str) -> None:
         self._client.get_module('MAM').request_preferences(
             callback=self._mam_prefs_received)
 
+        self.show()
+
     def _on_destroy(self, widget: MamPreferences) -> None:
         self._destroyed = True
 


=====================================
gajim/gtk/preferences.py
=====================================
@@ -100,6 +100,8 @@ def __init__(self) -> None:
 
         self.connect('destroy', self._on_destroy)
 
+        self.show()
+
     def get_ui(self):
         return self._ui
 



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

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