From 38f943ef81781210a7b680ecd58b75cb9007635a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sat, 15 Sep 2012 18:49:41 +0200 Subject: [PATCH] messageTray: Do not block hot corner when open https://bugzilla.gnome.org/show_bug.cgi?id=682255 --- js/ui/messageTray.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index f91a010f5..cfbf011b4 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -1443,6 +1443,7 @@ const MessageTray = new Lang.Class({ this._grabHelper = new GrabHelper.GrabHelper(this.actor); this._grabHelper.addActor(this._summaryBoxPointer.actor); this._grabHelper.addActor(this.actor); + this._grabHelper.addActor(Main.panel.statusArea['activities'].hotCorner.actor); Main.layoutManager.keyboardBox.connect('notify::hover', Lang.bind(this, this._onKeyboardHoverChanged)); @@ -1485,6 +1486,7 @@ const MessageTray = new Lang.Class({ Main.overview.connect('showing', Lang.bind(this, function() { this._overviewVisible = true; + this._grabHelper.ungrab(); // drop modal grab if necessary this.actor.add_style_pseudo_class('overview'); this._updateState(); }));