From 8da5c5f50e9cae5631bde82c659a4a76990ecfe2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Sun, 6 Jun 2010 21:30:34 +0200 Subject: [PATCH] Remove incorrect parameter Commit 730681aabc5 calls ClutterActor.hide() with a parameter, which is wrong, but managed to sneak in when rebasing. --- js/ui/overview.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/overview.js b/js/ui/overview.js index a0796a807..228031c22 100644 --- a/js/ui/overview.js +++ b/js/ui/overview.js @@ -383,7 +383,7 @@ Overview.prototype = { } this._transparentBackground.lower_bottom(); this._paneContainer.hide(); - this._lightbox.actor.hide(true); + this._lightbox.actor.hide(); } })); },