summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/config.c b/config.c
index 7eb2e4a1..5413f23b 100644
--- a/config.c
+++ b/config.c
@@ -45,6 +45,7 @@ cFlatConfig::cFlatConfig(void) {
MenuChannelView = 1;
MenuTimerView = 3;
MenuEventView = 1;
+ MenuRecordingView = 1;
decorBorderChannelByTheme = 1;
decorBorderChannelTypeUser = 0;
@@ -182,6 +183,7 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "MenuChannelView") == 0) MenuChannelView = atoi(Value);
else if (strcmp(Name, "MenuTimerView") == 0) MenuTimerView = atoi(Value);
else if (strcmp(Name, "MenuEventView") == 0) MenuEventView = atoi(Value);
+ else if (strcmp(Name, "MenuRecordingView") == 0) MenuRecordingView = atoi(Value);
else if (strcmp(Name, "ChannelSimpleAspectFormat") == 0) ChannelSimpleAspectFormat = atoi(Value);
else if (strcmp(Name, "RecordingSimpleAspectFormat") == 0) RecordingSimpleAspectFormat = atoi(Value);