diff --git a/js/ui/overview.js b/js/ui/overview.js index 4966cdb69..4dd59d4ae 100644 --- a/js/ui/overview.js +++ b/js/ui/overview.js @@ -573,7 +573,9 @@ var Overview = class extends Signals.EventEmitter { this._animationInProgress = false; this._coverPane.hide(); - this._changeShownState(OverviewShownState.SHOWN); + if (this._shownState !== OverviewShownState.SHOWN) + this._changeShownState(OverviewShownState.SHOWN); + // Handle any calls to hide* while we were showing if (!this._shown) this._animateNotVisible();