Philipp Hörist pushed to branch macos 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
- - - - -
129d37fb by Philipp Hörist at 2026-02-13T17:29:36+00:00
fix: MacOS: Show window control buttons
- - - - -
2 changed files:
- gajim/data/gui/main.ui
- gajim/gtk/main.py
Changes:
=====================================
gajim/data/gui/main.ui
=====================================
@@ -38,7 +38,6 @@
<object class="AdwToolbarView">
<child type="top">
<object class="AdwHeaderBar" id="_header_bar">
- <property name="show-start-title-buttons">false</property>
<child type="start">
<object class="GtkImage">
<property name="icon-name">gajim</property>
=====================================
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/-/compare/3f30f9a6ca2382583a05ca448f8264aab7654c68...129d37fb54c38b8a19685b2a1d2af00a5454ff25
--
View it on GitLab:
https://dev.gajim.org/gajim/gajim/-/compare/3f30f9a6ca2382583a05ca448f8264aab7654c68...129d37fb54c38b8a19685b2a1d2af00a5454ff25
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]