diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-09-26 17:24:23 +0200 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-09-26 17:24:23 +0200 |
commit | c9150927a9e4aa00c64419503c8d3fc2d363f68b (patch) | |
tree | 3be2e80900485ee6a5f6a7b90c1bec3b371ee726 /config.c | |
parent | e50baedac033c52788f89ad7cb82a21860536147 (diff) | |
download | skin-flatplus-c9150927a9e4aa00c64419503c8d3fc2d363f68b.tar.gz skin-flatplus-c9150927a9e4aa00c64419503c8d3fc2d363f68b.tar.bz2 |
add option to draw the menu background over the entire height
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -59,6 +59,8 @@ cFlatConfig::cFlatConfig(void) { MenuEventView = 1; MenuRecordingView = 1; + MenuFullOsd = 0; + MenuItemRecordingClearPercent = 1; MenuItemRecordingShowFolderDate = 1; MenuItemParseTilde = 1; @@ -261,6 +263,7 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "ChannelBitrateShowCalcInterval") == 0) ChannelBitrateShowCalcInterval = atoi(Value); else if (strcmp(Name, "TopBarHideClockText") == 0) TopBarHideClockText = atoi(Value); else if (strcmp(Name, "ChannelTimeLeft") == 0) ChannelTimeLeft = atoi(Value); + else if (strcmp(Name, "MenuFullOsd") == 0) MenuFullOsd = atoi(Value); else return false; |