From fd635ba933ca2c59c919e3f813af02fac2c91aae Mon Sep 17 00:00:00 2001 From: Sebastian Keller Date: Wed, 7 Jan 2015 00:35:13 +0100 Subject: [PATCH] calendar: update current day highlight on day change https://bugzilla.gnome.org/show_bug.cgi?id=742492 --- js/ui/calendar.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/ui/calendar.js b/js/ui/calendar.js index bc2b42c4e..52f6cb5e9 100644 --- a/js/ui/calendar.js +++ b/js/ui/calendar.js @@ -603,6 +603,7 @@ const Calendar = new Lang.Class({ beginDate.setHours(12); this._calendarBegin = new Date(beginDate); + this._markedAsToday = now; let year = beginDate.getYear(); @@ -694,7 +695,7 @@ const Calendar = new Lang.Class({ else this._monthLabel.text = this._selectedDate.toLocaleFormat(this._headerFormat); - if (!this._calendarBegin || !_sameMonth(this._selectedDate, this._calendarBegin)) + if (!this._calendarBegin || !_sameMonth(this._selectedDate, this._calendarBegin) || !_sameDay(now, this._markedAsToday)) this._rebuildCalendar(); this._buttons.forEach(Lang.bind(this, function(button) {