diff options
author | Ted Gould <ted@gould.cx> | 2011-03-29 10:39:29 -0500 |
---|---|---|
committer | Ted Gould <ted@gould.cx> | 2011-03-29 10:39:29 -0500 |
commit | 927bc60a4519114dd6d92fd374dfd54dc38181d7 (patch) | |
tree | 9e216dd6665889f7802158f061d7f424c4774ee9 /src | |
parent | 9f4c4935225b9d301528453553d372b02eb1b219 (diff) | |
parent | 4298b95bb97d341558b263bf15c02aa1575f6293 (diff) | |
download | ayatana-indicator-datetime-927bc60a4519114dd6d92fd374dfd54dc38181d7.tar.gz ayatana-indicator-datetime-927bc60a4519114dd6d92fd374dfd54dc38181d7.tar.bz2 ayatana-indicator-datetime-927bc60a4519114dd6d92fd374dfd54dc38181d7.zip |
Adjusting the timer so it appears more consistent
Diffstat (limited to 'src')
-rw-r--r-- | src/indicator-datetime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/indicator-datetime.c b/src/indicator-datetime.c index 1cdcd3f..f789e2b 100644 --- a/src/indicator-datetime.c +++ b/src/indicator-datetime.c @@ -813,7 +813,7 @@ setup_timer (IndicatorDatetime * self, GDateTime * datetime) if (self->priv->show_seconds || (self->priv->time_mode == SETTINGS_TIME_CUSTOM && self->priv->custom_show_seconds)) { - self->priv->timer = g_timeout_add_full(G_PRIORITY_HIGH, 865, timer_func, self, NULL); + self->priv->timer = g_timeout_add_full(G_PRIORITY_HIGH, 999, timer_func, self, NULL); } else { if (datetime == NULL) { datetime = g_date_time_new_now_local(); |