From 1dff5fb5b24a84406388d81b62403d97c769733c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Fri, 22 Feb 2013 00:27:25 +0100 Subject: [PATCH] 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 file changed, 3 insertions(+) diff --git a/js/ui/appDisplay.js b/js/ui/appDisplay.js index c450c6770..cc17f636e 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);