diff --git a/js/ui/overview.js b/js/ui/overview.js index 209be4203..78736e513 100644 --- a/js/ui/overview.js +++ b/js/ui/overview.js @@ -652,6 +652,8 @@ var Overview = class { } runStartupAnimation(callback) { + Main.panel.style = 'transition-duration: 0ms;'; + this._shown = true; this._visible = true; this._visibleTarget = true; @@ -663,6 +665,7 @@ var Overview = class { this.emit('showing'); this._overview.runStartupAnimation(() => { + Main.panel.style = null; this.emit('shown'); callback(); });