[gnome-shell] calendar: update current day highlight on day change
- From: Adel Gadllah <agadllah src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-shell] calendar: update current day highlight on day change
- Date: Sat, 10 Jan 2015 16:44:49 +0000 (UTC)
commit 60b3d43ea71ab1e50bcda3b7eb681cd63fa3e01e
Author: Sebastian Keller <sebastian-keller gmx de>
Date: Wed Jan 7 00:35:13 2015 +0100
calendar: update current day highlight on day change
https://bugzilla.gnome.org/show_bug.cgi?id=742492
js/ui/calendar.js | 3 ++-
1 files changed, 2 insertions(+), 1 deletions(-)
---
diff --git a/js/ui/calendar.js b/js/ui/calendar.js
index 5d6d230..b778604 100644
--- a/js/ui/calendar.js
+++ b/js/ui/calendar.js
@@ -601,6 +601,7 @@ const Calendar = new Lang.Class({
beginDate.setHours(12);
this._calendarBegin = new Date(beginDate);
+ this._markedAsToday = now;
let year = beginDate.getYear();
@@ -692,7 +693,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) {
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]