messageTray: Disable unredirection while showing banners

We don't usually show notification banners while the monitor is in
fullscreen, but when we do - the notification is urgent - we should
actually show the banner, even if the top-most window is unredirected.
To achieve that, disable unredirection while the banner is showing.

https://gitlab.gnome.org/GNOME/gnome-shell/issues/430


(cherry picked from commit 4dc2039859)
This commit is contained in:
Florian Müllner 2018-08-12 23:25:13 +00:00 committed by Florian Müllner
parent a1a7ba7cc7
commit 62c2dbbc9d

View File

@ -1309,8 +1309,10 @@ var MessageTray = new Lang.Class({
}
this._banner = this._notification.createBanner();
this._bannerClickedId = this._banner.connect('done-displaying',
this._escapeTray.bind(this));
this._bannerClickedId = this._banner.connect('done-displaying', () => {
Meta.enable_unredirect_for_display(global.display);
this._escapeTray();
});
this._bannerUnfocusedId = this._banner.connect('unfocused', () => {
this._updateState();
});
@ -1322,6 +1324,7 @@ var MessageTray = new Lang.Class({
this._bannerBin.y = -this._banner.actor.height;
this.actor.show();
Meta.disable_unredirect_for_display(global.display);
this._updateShowingNotification();
let [x, y, mods] = global.get_pointer();