From 75745fc23f3f22f70def70179b5605b022f7f851 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 10 Mar 2015 22:30:35 +0100 Subject: [PATCH] calendar: Do not left-align bodyStack It's its contents that should be aligned, the stack itself should fill the available width. --- js/ui/calendar.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/js/ui/calendar.js b/js/ui/calendar.js index cb63d6aae..7345ae006 100644 --- a/js/ui/calendar.js +++ b/js/ui/calendar.js @@ -1008,8 +1008,7 @@ const Message = new Lang.Class({ this._closeButton = new St.Button({ child: closeIcon, visible: false }); titleBox.add_actor(this._closeButton); - this._bodyStack = new St.Widget({ x_expand: true, - x_align: Clutter.ActorAlign.START }); + this._bodyStack = new St.Widget({ x_expand: true }); this._bodyStack.layout_manager = new LabelExpanderLayout(); contentBox.add_actor(this._bodyStack);