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

Origin commit data
------------------
Branch: ni/coolstream
Commit: 7466d6f19c
Author: Michael Liebmann <tuxcode.bbg@gmail.com>
Date: 2013-11-22 (Fri, 22 Nov 2013)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
Michael Liebmann
2013-11-22 08:52:08 +01:00
parent 7f2097f657
commit a6137cadce
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;
}