messageTray: Fix lightbox

Commit 448517032e accidentally reverted the condition for showing
the lightbox. Fix that.

https://bugzilla.gnome.org/show_bug.cgi?id=686728
This commit is contained in:
Florian Müllner 2012-10-23 22:40:09 +02:00
parent 40efe6c324
commit d845c8eed0

View File

@ -2095,9 +2095,8 @@ const MessageTray = new Lang.Class({
transition: 'easeOutQuad'
});
if (this._overviewVisible) {
if (!this._overviewVisible)
this._lightbox.show();
}
return true;
},