diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2013-11-17 19:42:15 +0100 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2013-11-17 19:42:15 +0100 |
commit | 969add1f9c9c47ae6c17d1783e34417417281f40 (patch) | |
tree | dc0907667ac1bda0835910bc8589eb3182d00fac /config.c | |
parent | e96728cf26c71f8f76143057bb0594c101370303 (diff) | |
download | skin-flatplus-969add1f9c9c47ae6c17d1783e34417417281f40.tar.gz skin-flatplus-969add1f9c9c47ae6c17d1783e34417417281f40.tar.bz2 |
add option to show active recording in TopBar
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -18,6 +18,8 @@ cFlatConfig::cFlatConfig(void) { RecordingAdditionalInfoShow = true; EpgAdditionalInfoShow = true; + TopBarRecordingShow = true; + MenuItemPadding = 5; marginOsdVer = 5; marginOsdHor = 5; @@ -150,6 +152,7 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "ResolutionAspectShow") == 0) ResolutionAspectShow = atoi(Value); else if (strcmp(Name, "RecordingAdditionalInfoShow") == 0) RecordingAdditionalInfoShow = atoi(Value); else if (strcmp(Name, "EpgAdditionalInfoShow") == 0) EpgAdditionalInfoShow = atoi(Value); + else if (strcmp(Name, "TopBarRecordingShow") == 0) TopBarRecordingShow = atoi(Value); else return false; return true; } |