From 91319d5da24932f7e4b0b9035cf2107584424655 Mon Sep 17 00:00:00 2001 From: Christian Schramm Date: Thu, 20 May 2010 00:27:00 +0200 Subject: [PATCH] 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 --- js/ui/panel.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/panel.js b/js/ui/panel.js index 453ecaa5d..c938e01fb 100644 --- a/js/ui/panel.js +++ b/js/ui/panel.js @@ -944,7 +944,7 @@ Panel.prototype = { let clockButton = new St.Button({ style_class: 'panel-button', toggle_mode: true, x_fill: true, - y_fill: true }); + y_fill: false }); this._centerBox.add(clockButton, { y_fill: true }); clockButton.connect('clicked', Lang.bind(this, this._toggleCalendar));