calendar: Do not left-align bodyStack

It's its contents that should be aligned, the stack itself should
fill the available width.
This commit is contained in:
Florian Müllner 2015-03-10 22:30:35 +01:00
parent 82479db084
commit 75745fc23f

View File

@ -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);