summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-09-26 17:24:23 +0200
committerMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-09-26 17:24:23 +0200
commitc9150927a9e4aa00c64419503c8d3fc2d363f68b (patch)
tree3be2e80900485ee6a5f6a7b90c1bec3b371ee726 /config.c
parente50baedac033c52788f89ad7cb82a21860536147 (diff)
downloadskin-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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/config.c b/config.c
index 902e517c..68aac22e 100644
--- a/config.c
+++ b/config.c
@@ -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;