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
5cd913a527
commit
24703ffa57
@ -136,6 +136,7 @@ const OsdWindow = new Lang.Class({
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
if (!this.actor.visible) {
|
if (!this.actor.visible) {
|
||||||
|
Meta.disable_unredirect_for_screen(global.screen);
|
||||||
this.actor.show();
|
this.actor.show();
|
||||||
this.actor.opacity = 0;
|
this.actor.opacity = 0;
|
||||||
this.actor.get_parent().set_child_above_sibling(this.actor, null);
|
this.actor.get_parent().set_child_above_sibling(this.actor, null);
|
||||||
@ -173,6 +174,7 @@ const OsdWindow = new Lang.Class({
|
|||||||
this.actor.hide();
|
this.actor.hide();
|
||||||
this.setLabel(null);
|
this.setLabel(null);
|
||||||
this.setLevel(null);
|
this.setLevel(null);
|
||||||
|
Meta.enable_unredirect_for_screen(global.screen);
|
||||||
},
|
},
|
||||||
|
|
||||||
_monitorsChanged: function() {
|
_monitorsChanged: function() {
|
||||||
|
Loading…
Reference in New Issue
Block a user