Clear stale flag when update!

.. last commit missed the critical line of code.
This commit is contained in:
Mark Liversedge
2013-03-31 02:05:06 +01:00
parent 25fd7ec68d
commit 62304c5a4c

View File

@@ -150,6 +150,7 @@ public:
void setMonth(int month, int year) {
if (stale || this->month != month || this->year != year) {
stale = false;
this->month = month;
this->year = year;
refresh();