diff --git a/extensions/dock/extension.js b/extensions/dock/extension.js index 240f8a87..02c9650b 100644 --- a/extensions/dock/extension.js +++ b/extensions/dock/extension.js @@ -304,7 +304,6 @@ Dock.prototype = { this.actor.show(); })); Main.layoutManager.addChrome(this.actor); - this.actor.lower_bottom(); //hidden this._settings.connect('changed::'+DOCK_POSITION_KEY, Lang.bind(this, function (){ @@ -372,6 +371,8 @@ Dock.prototype = { this.actor.connect('leave-event', Lang.bind(this, this._hideDock)); this.actor.connect('enter-event', Lang.bind(this, this._showDock)); + + this._hideDock(); }, destroy: function() { @@ -861,4 +862,4 @@ function enable() { function disable() { dock.destroy(); dock = null; -} \ No newline at end of file +}