From cddc28d8c67f6929ae305666d11b657f364c6282 Mon Sep 17 00:00:00 2001 From: Charles Gagnon Date: Tue, 7 Jul 2020 16:02:36 -0400 Subject: [PATCH] Fix missing icon animations with intellihide --- intellihide.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/intellihide.js b/intellihide.js index fb310f4..8fb1e97 100644 --- a/intellihide.js +++ b/intellihide.js @@ -344,8 +344,11 @@ var Intellihide = Utils.defineClass({ }, _revealPanel: function(immediate) { - this._panelBox.visible = true; - this._dtpPanel.taskbar._shownInitially = false; + if (!this._panelBox.visible) { + this._panelBox.visible = true; + this._dtpPanel.taskbar._shownInitially = false; + } + this._animatePanel(0, immediate); },