diff options
author | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-10-16 20:53:56 +0200 |
---|---|---|
committer | Martin Schirrmacher <vdr.skinflatplus@schirrmacher.eu> | 2014-10-16 20:53:56 +0200 |
commit | 2a58ea17389c0a6024cd0ff7697e96dffbc0990e (patch) | |
tree | fff53bb71f862cf1f49383822ec7cc77e069eb97 /config.c | |
parent | eb5cd22a430b8a4db21aad162164e1c1ae5f44cb (diff) | |
download | skin-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.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; |