From 984e755ee61158b93ebf15962f3747827bd78dac Mon Sep 17 00:00:00 2001 From: Giovanni Campagna Date: Sat, 26 Feb 2011 16:43:15 +0100 Subject: [PATCH] Dock: lower the actor to the bottom Unless overridden manually, Clutter places actors at the top, which means the dock is painted above both the status menu and summary notifications. --- extensions/dock/extension.js | 1 + 1 file changed, 1 insertion(+) diff --git a/extensions/dock/extension.js b/extensions/dock/extension.js index 6c377c78..8af0d3e5 100644 --- a/extensions/dock/extension.js +++ b/extensions/dock/extension.js @@ -63,6 +63,7 @@ Dock.prototype = { this._tracker.connect('app-state-changed', Lang.bind(this, this._queueRedisplay)); Main.chrome.addActor(this.actor, { visibleInOverview: false }); + this.actor.lower_bottom(); }, _appIdListToHash: function(apps) {