aboutsummaryrefslogtreecommitdiff
path: root/src/indicator-datetime.c
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2012-09-19 20:09:14 -0500
committerCharles Kerr <charles.kerr@canonical.com>2012-09-19 20:09:14 -0500
commit409f65de28ab57035c7d6945060573a32a69b6cc (patch)
tree602440b39d522a8004387caf42a0e138e44cae21 /src/indicator-datetime.c
parent4e28e95f3bf1320fa92e88f6f103eab5a3812efa (diff)
downloadayatana-indicator-datetime-409f65de28ab57035c7d6945060573a32a69b6cc.tar.gz
ayatana-indicator-datetime-409f65de28ab57035c7d6945060573a32a69b6cc.tar.bz2
ayatana-indicator-datetime-409f65de28ab57035c7d6945060573a32a69b6cc.zip
update all of the indicator's labels when the menu's visibility changes to true
Diffstat (limited to 'src/indicator-datetime.c')
-rw-r--r--src/indicator-datetime.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/indicator-datetime.c b/src/indicator-datetime.c
index 9e34a65..2356c6d 100644
--- a/src/indicator-datetime.c
+++ b/src/indicator-datetime.c
@@ -154,6 +154,7 @@ GType indicator_datetime_get_type (void) G_GNUC_CONST;
static void indicator_datetime_class_init (IndicatorDatetimeClass *klass);
static void indicator_datetime_init (IndicatorDatetime *self);
+static void timezone_update_all_labels (IndicatorDatetime *self);
static void set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec);
static void get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec);
static void indicator_datetime_dispose (GObject *object);
@@ -280,6 +281,10 @@ menu_visible_notfy_cb(GtkWidget * menu, G_GNUC_UNUSED GParamSpec *pspec, gpointe
// Set the calendar to todays date
ido_calendar_menu_item_set_date (self->priv->ido_calendar, y, m-1, d);
+ /* Update in case date was changed outside of indicator-datetime */
+ update_label(self, NULL);
+ timezone_update_all_labels(self);
+
// Make sure the day-selected signal is sent so the menu updates - may duplicate
/*GVariant *variant = g_variant_new_uint32((guint)curtime);
guint timestamp = (guint)time(NULL);