From 3a453c5f735a85f9d95eb1691d23f3833c321853 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 23 Oct 2012 22:40:09 +0200 Subject: [PATCH] messageTray: Fix lightbox Commit 448517032e5 accidentally reverted the condition for showing the lightbox. Fix that. https://bugzilla.gnome.org/show_bug.cgi?id=686728 --- js/ui/messageTray.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/ui/messageTray.js b/js/ui/messageTray.js index 791ea9e73..bd2ab2f4f 100644 --- a/js/ui/messageTray.js +++ b/js/ui/messageTray.js @@ -2101,9 +2101,8 @@ const MessageTray = new Lang.Class({ transition: 'easeOutQuad' }); - if (this._overviewVisible) { + if (!this._overviewVisible) this._lightbox.show(); - } return true; },