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


Commits:
66bd4148 by Sergey Ponomarev at 2025-09-28T10:56:10+00:00
imprv: DebugConsole: Disable Stream Management by default

- - - - -


1 changed file:

- gajim/gtk/debug_console.py


Changes:

=====================================
gajim/gtk/debug_console.py
=====================================
@@ -79,7 +79,6 @@ def __init__(self) -> None:
 
         EventHelper.__init__(self)
 
-        self._selected_account = "AllAccounts"
         self._selected_send_account: str | None = None
         self._filter_dialog: SettingsDialog | None = None
         self._sent_stanzas = SentSzanzas()
@@ -88,7 +87,7 @@ def __init__(self) -> None:
         self._presence = True
         self._message = True
         self._iq = True
-        self._stream = True
+        self._stream = False
         self._incoming = True
         self._outgoing = True
 
@@ -96,7 +95,6 @@ def __init__(self) -> None:
         header_bar = self.get_header_bar()
         assert header_bar is not None
         header_bar.set_title_widget(self._ui.header_box)
-        self._set_title()
         self.set_child(self._ui.stack)
 
         
self._ui.paned.set_position(self._ui.paned.get_property("max-position"))
@@ -187,6 +185,7 @@ def __init__(self) -> None:
                 ("account-disabled", ged.GUI1, self._on_account_changed),
             ]
         )
+        self._set_account("AllAccounts", "")
 
     def _cleanup(self) -> None:
         self.unregister_events()



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

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