diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |