osdWindow: Disable unredirection while showing the OSD
This allows OSDs to be visible even when displayed on top of unredirected windows. https://bugzilla.gnome.org/show_bug.cgi?id=701224
This commit is contained in:
parent
c1eaf97bc6
commit
f88f51dd99
@ -136,6 +136,7 @@ const OsdWindow = new Lang.Class({
|
||||
return;
|
||||
|
||||
if (!this.actor.visible) {
|
||||
Meta.disable_unredirect_for_screen(global.screen);
|
||||
this.actor.show();
|
||||
this.actor.opacity = 0;
|
||||
this.actor.get_parent().set_child_above_sibling(this.actor, null);
|
||||
@ -173,6 +174,7 @@ const OsdWindow = new Lang.Class({
|
||||
this.actor.hide();
|
||||
this.setLabel(null);
|
||||
this.setLevel(null);
|
||||
Meta.enable_unredirect_for_screen(global.screen);
|
||||
},
|
||||
|
||||
_monitorsChanged: function() {
|
||||
|
Loading…
Reference in New Issue
Block a user