Philipp Hörist pushed to branch master at gajim / gajim
Commits:
6fe921ec by Philipp Hörist at 2026-02-13T18:27:23+01:00
fix: Main: Bring window to front when application is triggerd via link
Fixes #12621
- - - - -
1 changed file:
- gajim/gtk/main.py
Changes:
=====================================
gajim/gtk/main.py
=====================================
@@ -719,9 +719,12 @@ def _on_response() -> None:
def _on_handle_uri(self, _action: Gio.SimpleAction, param: GLib.Variant)
-> None:
uris = param.unpack()
+ log.debug("Try to handle uris: %s", uris)
if not uris:
return
+ self.present()
+
uri = parse_uri(uris[0])
match uri:
case XmppIri():
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/6fe921ec6fc47399e9898de51c78a9806b0a17a4
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/commit/6fe921ec6fc47399e9898de51c78a9806b0a17a4
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]