[gnome-shell] overview: use a bin for the main overview actor



commit 43ed66cf266bbd19a958450cdc8a59ff741e4f48
Author: Cosimo Cecchi <cosimoc gnome org>
Date:   Thu Feb 28 21:17:50 2013 -0500

    overview: use a bin for the main overview actor
    
    We'll pack the new messages indicator on top of the current overview
    group, so we need to pack it into a ClutterBinLayout first.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=687787

 js/ui/overview.js |    6 +++++-
 1 files changed, 5 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/overview.js b/js/ui/overview.js
index 6d487f6..1f8f0d1 100644
--- a/js/ui/overview.js
+++ b/js/ui/overview.js
@@ -118,6 +118,9 @@ const Overview = new Lang.Class({
         this._desktopFade = new St.Bin();
         global.overlay_group.add_actor(this._desktopFade);
 
+        let layout = new Clutter.BinLayout();
+        this._stack = new Clutter.Actor({ layout_manager: layout });
+
         /* Translators: This is the main view to select
            activities. See also note for "Activities" string. */
         this._overview = new St.BoxLayout({ name: 'overview',
@@ -151,7 +154,8 @@ const Overview = new Lang.Class({
         this._coverPane.connect('event', Lang.bind(this, function (actor, event) { return true; }));
 
         this._overview.hide();
-        global.overlay_group.add_actor(this._overview);
+        this._stack.add_actor(this._overview);
+        global.overlay_group.add_actor(this._stack);
 
         this._coverPane.hide();
 


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