From: Florian Müllner Date: Thu, 20 Oct 2016 16:00:04 +0000 (+0200) Subject: gtk-shell: Work around non-working startup notifications X-Git-Tag: archive/raspbian/3.30.0-1+rpi1~4^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=384054dff144a667cdff4da15e40d7a7c7344f4f;p=mutter.git gtk-shell: Work around non-working startup notifications GNOME Shell relies on the MetaScreen::startup-sequence-changed signal, which is tied to (lib)startup-notification and therefore X11. As a result, when we remove the startup sequence of a wayland client, GNOME Shell will not be notified about this until startup-notification's timeout is hit. As a temporary stop-gap, go through XWayland even for wayland clients, so that the signal is emitted when expected. Bug: https://bugzilla.gnome.org/show_bug.cgi?id=768531 Applied-upstream: no Gbp-Pq: Name bgo768531_workaround-startup-notifications.patch --- diff --git a/src/wayland/meta-wayland-gtk-shell.c b/src/wayland/meta-wayland-gtk-shell.c index 474595b..5837567 100644 --- a/src/wayland/meta-wayland-gtk-shell.c +++ b/src/wayland/meta-wayland-gtk-shell.c @@ -321,11 +321,21 @@ gtk_shell_set_startup_id (struct wl_client *client, struct wl_resource *resource, const char *startup_id) { +#if 0 MetaDisplay *display; display = meta_get_display (); meta_startup_notification_remove_sequence (display->startup_notification, startup_id); +#else + /* HACK: MetaScreen::startup-sequence-changed is currently tied to + (lib)startup-notification, which means it only works on X11; + so for now, always go through XWayland, even for wayland clients */ + gdk_x11_display_broadcast_startup_message (gdk_display_get_default (), + "remove", + "ID", startup_id, + NULL); +#endif } static void