InfoClock: Fix display clock in movie browser, file browser etc.

Origin commit data
------------------
Commit: 7466d6f19c
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-11-22 (Fri, 22 Nov 2013)
This commit is contained in:
Michael Liebmann
2013-11-22 08:52:08 +01:00
parent db1a003584
commit c6eeb420d4
10 changed files with 57 additions and 40 deletions

View File

@@ -251,8 +251,6 @@ void* CComponentsFrmClock::initClockThread(void *arg)
time_t count = time(0);
//start loop for paint
while(1) {
sleep(clock->cl_interval);
if (clock->paintClock) {
//refresh item property values
clock->refresh();
@@ -265,6 +263,7 @@ void* CComponentsFrmClock::initClockThread(void *arg)
clock->cl_thread = 0;
break;
}
sleep(clock->cl_interval);
}
return 0;
}