Skip to content

Commit

Permalink
Do not show dock in overview if manually hidden
Browse files Browse the repository at this point in the history
  • Loading branch information
jackpot51 committed Apr 14, 2021
1 parent e4a0980 commit 23ac7a5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docking.js
Original file line number Diff line number Diff line change
Expand Up @@ -701,7 +701,9 @@ var DockedDash = GObject.registerClass({
this._ignoreHover = true;
this._intellihide.disable();
this._removeAnimations();
this._animateIn(DockManager.settings.get_double('animation-time'), 0);
if (! this._manualhideIsEnabled) {
this._animateIn(DockManager.settings.get_double('animation-time'), 0);
}
}

_onOverviewHiding() {
Expand Down

0 comments on commit 23ac7a5

Please sign in to comment.