Daniel Brötzmann pushed to branch gtk4 at gajim / gajim
Commits:
4195c6fa by wurstsalat at 2024-10-13T16:32:16+02:00
cfix: CertificateDialog: Remove print
- - - - -
5ee18bf4 by wurstsalat at 2024-10-13T16:32:16+02:00
cfix: ServerInfo: Use SignalManager to connect 'activate-link' signal
- - - - -
1b7c8006 by wurstsalat at 2024-10-13T16:32:16+02:00
cfix: ServerInfo: Use SignalManager to connect 'activate-link' signal
- - - - -
2 changed files:
- gajim/gtk/certificate_dialog.py
- gajim/gtk/server_info.py
Changes:
=====================================
gajim/gtk/certificate_dialog.py
=====================================
@@ -52,7 +52,6 @@ def __init__(
self.set_child(CertificateBox(account, cert))
def _cleanup(self) -> None:
- print('cleanup')
pass
=====================================
gajim/gtk/server_info.py
=====================================
@@ -25,12 +25,12 @@
from gajim.common import ged
from gajim.common.const import TLS_VERSION_STRINGS
from gajim.common.events import ServerDiscoReceived
+from gajim.common.ged import EventHelper
from gajim.common.i18n import _
from gajim.common.util.uri import open_uri
from gajim.gtk.builder import get_builder
from gajim.gtk.certificate_dialog import CertificateBox
-from gajim.common.ged import EventHelper
from gajim.gtk.widgets import GajimAppWindow
log = logging.getLogger('gajim.gtk.server_info')
@@ -207,7 +207,7 @@ def _get_address_label(self,
label.set_xalign(0)
label.set_halign(Gtk.Align.START)
label.get_style_context().add_class('link-button')
- label.connect('activate-link', self._on_activate_link)
+ self._connect(label, 'activate-link', self._on_activate_link)
if last:
label.set_margin_bottom(6)
return label
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/35ce49700391d25cffd2d6ddeec11bcc7f754798...1b7c8006d1a7459c4f42a62de6b4973c514a1faf
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/35ce49700391d25cffd2d6ddeec11bcc7f754798...1b7c8006d1a7459c4f42a62de6b4973c514a1faf
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]