From: Thierry Lorthiois Date: Wed, 3 Feb 2010 12:05:16 +0000 (+0000) Subject: applied patch to synchronize clock by wim.speek@orange.nl X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Ftint2;a=commitdiff_plain;h=7384187d2b17c567d1368349a9990f77e008067e applied patch to synchronize clock by wim.speek@orange.nl --- diff --git a/src/clock/clock.c b/src/clock/clock.c index 82964a6..6d4bea9 100644 --- a/src/clock/clock.c +++ b/src/clock/clock.c @@ -53,7 +53,7 @@ int clock_enabled; static timeout* clock_timeout=0; -void update_clocks(void* arg) +void update_clocks_sec(void* arg) { gettimeofday(&time_clock, 0); int i; @@ -64,6 +64,19 @@ void update_clocks(void* arg) panel_refresh = 1; } +void update_clocks_min(void* arg) +{ + gettimeofday(&time_clock, 0); + if (time_clock.tv_sec % 60 == 0) { + int i; + if (time1_format) { + for (i=0 ; i < nb_panel ; i++) + panel1[i].clock.area.resize = 1; + } + panel_refresh = 1; + } +} + struct tm* clock_gettime_for_tz(const char* timezone) { if (timezone) { const char* old_tz = getenv("TZ"); @@ -87,9 +100,9 @@ void init_clock() { if(time1_format && clock_timeout==0) { if (strchr(time1_format, 'S') || strchr(time1_format, 'T') || strchr(time1_format, 'r')) - clock_timeout = add_timeout(10, 1000, update_clocks, 0); + clock_timeout = add_timeout(10, 1000, update_clocks_sec, 0); else - clock_timeout = add_timeout(10, 60000, update_clocks, 0); + clock_timeout = add_timeout(10, 1000, update_clocks_min, 0); } }