[gnome-shell] appDisplay: Expand AllView



commit b799e8c0a6b7bbd0246b924c79a2fca3257b05cd
Author: Florian Müllner <fmuellner gnome org>
Date:   Fri Feb 22 00:27:25 2013 +0100

    appDisplay: Expand AllView
    
    If the view doesn't fill the available space, content should still
    start at the top rather than the center - not least the positioning
    code for folder popups assumes that, so set the appropriate expand
    flags.
    
    https://bugzilla.gnome.org/show_bug.cgi?id=694371

 js/ui/appDisplay.js |    3 +++
 1 files changed, 3 insertions(+), 0 deletions(-)
---
diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js
index d9c0f08..6d23a9a 100644
--- a/js/ui/appDisplay.js
+++ b/js/ui/appDisplay.js
@@ -187,6 +187,9 @@ const AllView = new Lang.Class({
     _init: function() {
         this.parent();
 
+        this._grid.actor.y_align = Clutter.ActorAlign.START;
+        this._grid.actor.y_expand = true;
+
         let box = new St.BoxLayout({ vertical: true });
         this._stack = new St.Widget({ layout_manager: new AllViewLayout() });
         this._stack.add_actor(this._grid.actor);


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