Remove incorrect parameter

Commit 730681aabc calls ClutterActor.hide() with a parameter, which
is wrong, but managed to sneak in when rebasing.
This commit is contained in:
Florian Müllner 2010-06-06 21:30:34 +02:00
parent 084ef99d10
commit 8da5c5f50e

View File

@ -383,7 +383,7 @@ Overview.prototype = {
} }
this._transparentBackground.lower_bottom(); this._transparentBackground.lower_bottom();
this._paneContainer.hide(); this._paneContainer.hide();
this._lightbox.actor.hide(true); this._lightbox.actor.hide();
} }
})); }));
}, },