summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-10-16 20:53:56 +0200
committerMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-10-16 20:53:56 +0200
commit2a58ea17389c0a6024cd0ff7697e96dffbc0990e (patch)
treefff53bb71f862cf1f49383822ec7cc77e069eb97 /config.c
parenteb5cd22a430b8a4db21aad162164e1c1ae5f44cb (diff)
downloadskin-flatplus-2a58ea17389c0a6024cd0ff7697e96dffbc0990e.tar.gz
skin-flatplus-2a58ea17389c0a6024cd0ff7697e96dffbc0990e.tar.bz2
add options to show channel, timer and recording count in title
Diffstat (limited to 'config.c')
-rw-r--r--config.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/config.c b/config.c
index 68aac22e..cf5d0340 100644
--- a/config.c
+++ b/config.c
@@ -59,6 +59,10 @@ cFlatConfig::cFlatConfig(void) {
MenuEventView = 1;
MenuRecordingView = 1;
+ MenuRecordingShowCount = 1;
+ MenuTimerShowCount = 1;
+ MenuChannelShowCount = 1;
+
MenuFullOsd = 0;
MenuItemRecordingClearPercent = 1;
@@ -264,6 +268,9 @@ bool cFlatConfig::SetupParse(const char *Name, const char *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 if (strcmp(Name, "MenuRecordingShowCount") == 0) MenuRecordingShowCount = atoi(Value);
+ else if (strcmp(Name, "MenuTimerShowCount") == 0) MenuTimerShowCount = atoi(Value);
+ else if (strcmp(Name, "MenuChannelShowCount") == 0) MenuChannelShowCount = atoi(Value);
else return false;