From 505b9047d7e3be9336ad0a5b7c2eece6850bfab0 Mon Sep 17 00:00:00 2001 From: David Zeuthen Date: Wed, 26 Jan 2011 13:39:04 -0500 Subject: [PATCH] Adjust alignment in event list As per this comment https://bugzilla.gnome.org/show_bug.cgi?id=632109#c38 See http://people.freedesktop.org/~david/calendar-today-align-fixes.png Signed-off-by: David Zeuthen --- js/ui/calendar.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/ui/calendar.js b/js/ui/calendar.js index edca1ccc5..925a46fe3 100644 --- a/js/ui/calendar.js +++ b/js/ui/calendar.js @@ -612,11 +612,11 @@ EventsList.prototype = { if (includeDayName) { dayNameBox.add(new St.Label( { style_class: 'events-day-dayname', text: day } ), - { x_fill: false } ); + { x_fill: true } ); } timeBox.add(new St.Label( { style_class: 'events-day-time', text: time} ), - { x_fill: false } ); + { x_fill: true } ); eventTitleBox.add(new St.Label( { style_class: 'events-day-task', text: desc} )); },