fixed bug that time was not correctly drawn if a submenu implements its own time display

This commit is contained in:
louis
2015-04-03 15:42:08 +02:00
parent 54ca48045a
commit f1d5367a53
6 changed files with 15 additions and 6 deletions

View File

@@ -63,11 +63,12 @@ bool cDisplayMenuView::DrawDateTime(void) {
return true;
}
bool cDisplayMenuView::DrawTime(void) {
bool cDisplayMenuView::DrawTime(bool &implemented) {
if (!ExecuteViewElement(veTime)) {
return false;
}
implemented = true;
map < string, string > stringTokens;
map < string, int > intTokens;