changed 'y_fill' of '_clockButton' in panel to false

The clock appeared to high compared to the activities button
or the login name. Might be just me though.

https://bugzilla.gnome.org/show_bug.cgi?id=619144
This commit is contained in:
Christian Schramm 2010-05-20 00:27:00 +02:00 committed by Colin Walters
parent 5bd7b0dc31
commit 91319d5da2

View File

@ -944,7 +944,7 @@ Panel.prototype = {
let clockButton = new St.Button({ style_class: 'panel-button', let clockButton = new St.Button({ style_class: 'panel-button',
toggle_mode: true, toggle_mode: true,
x_fill: true, x_fill: true,
y_fill: true }); y_fill: false });
this._centerBox.add(clockButton, { y_fill: true }); this._centerBox.add(clockButton, { y_fill: true });
clockButton.connect('clicked', Lang.bind(this, this._toggleCalendar)); clockButton.connect('clicked', Lang.bind(this, this._toggleCalendar));