From a3f7799ed05f196ed44707a9dd7f2af4a325b9bb Mon Sep 17 00:00:00 2001 From: Thilo Graf Date: Wed, 21 Jun 2017 10:31:22 +0200 Subject: [PATCH] CTimerList: partial revert of - timerlist: small design reworks ... removed: * blinking clock in header (shameless stolen from TangoCash) Not really required here and before we can enable a ticking clock here, clock must be disabled on opened context menues, because the timerlist context menus will be damaged. This needs a separate handling. Origin commit data ------------------ Branch: ni/coolstream Commit: https://github.com/neutrino-images/ni-neutrino/commit/06c8fd33f8e66a1733d2b30040b1bf9009a6e12a Author: Thilo Graf Date: 2017-06-21 (Wed, 21 Jun 2017) ------------------ This commit was generated by Migit --- src/gui/timerlist.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/timerlist.cpp b/src/gui/timerlist.cpp index ffa203a09..ca48a92f6 100644 --- a/src/gui/timerlist.cpp +++ b/src/gui/timerlist.cpp @@ -1381,7 +1381,7 @@ void CTimerList::paintHead() if (header == NULL) { header = new CComponentsHeader(x, y, width, header_height, g_Locale->getText(LOCALE_TIMERLIST_NAME), NEUTRINO_ICON_TIMER, CComponentsHeader::CC_BTN_MENU | CComponentsHeader::CC_BTN_EXIT, NULL, CC_SHADOW_ON); - header->enableClock(true, " %d.%m.%Y, %H:%M ", " %d.%m.%Y, %H.%M ", true); + header->enableClock(true, " %d.%m.%Y - %H:%M ", NULL, false); } header->paint(CC_SAVE_SCREEN_NO); }