mirror of
https://projects.vdr-developer.org/git/vdr-plugin-skindesigner.git
synced 2023-10-19 15:58:31 +00:00
fixed bug that datetime was not correctly drawn if a submenu implements its own datetime display
This commit is contained in:
@@ -46,11 +46,11 @@ bool cDisplayMenuView::DrawHeader(void) {
|
||||
return true;
|
||||
}
|
||||
|
||||
bool cDisplayMenuView::DrawDateTime(void) {
|
||||
bool cDisplayMenuView::DrawDateTime(bool &implemented) {
|
||||
if (!ExecuteViewElement(veDateTime)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
implemented = true;
|
||||
map < string, string > stringTokens;
|
||||
map < string, int > intTokens;
|
||||
|
||||
@@ -67,7 +67,6 @@ bool cDisplayMenuView::DrawTime(bool &implemented) {
|
||||
if (!ExecuteViewElement(veTime)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
implemented = true;
|
||||
map < string, string > stringTokens;
|
||||
map < string, int > intTokens;
|
||||
|
Reference in New Issue
Block a user