[gnome-shell-extensions] Dock: lower the actor to the bottom



commit 984e755ee61158b93ebf15962f3747827bd78dac
Author: Giovanni Campagna <gcampagna src gnome org>
Date:   Sat Feb 26 16:43:15 2011 +0100

    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 files changed, 1 insertions(+), 0 deletions(-)
---
diff --git a/extensions/dock/extension.js b/extensions/dock/extension.js
index 6c377c7..8af0d3e 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) {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]