From 0bf60d5783348434829af1d603cb5f07539039db Mon Sep 17 00:00:00 2001 From: adrianiainlam Date: Wed, 11 May 2016 14:18:54 +0100 Subject: [PATCH] Workaround for issue #1 --- indicator-lunar-calendar.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/indicator-lunar-calendar.js b/indicator-lunar-calendar.js index 64fb0ea..ea4470f 100755 --- a/indicator-lunar-calendar.js +++ b/indicator-lunar-calendar.js @@ -74,6 +74,14 @@ function update_indicator() { indicator.set_icon(__dirname + '/icons/' + lunar.zodiac + '.svg'); indicator.set_label(compact_date, ''); item.set_label(long_date); + + console.log('Indicator updated. ' + lunar.hour + ' Time: ' + new Date()); + /* DO NOT REMOVE THE ABOVE LINE. + * I have no absolutely no idea why but the indicator doesn't get + * updated if this line is removed. + * It wasn't needed though before implementing the DBus section below. + * So perhaps some kind of conflict between the two? + */ } var job = new CronJob({ -- 2.7.4