summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
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 7ff9f8d5..f197614c 100644
--- a/config.c
+++ b/config.c
@@ -125,6 +125,8 @@ cFlatConfig::cFlatConfig(void) {
MainMenuWidgetWeatherDays = 5;
MainMenuWidgetWeatherType = 0;
+ MenuItemRecordingSeenTreshold = 0.98 / 100.0;
+
ChannelWeatherShow = 1;
PlaybackWeatherShow = 1;
WeatherFontSize = 0.05;
@@ -371,6 +373,7 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "MainMenuWidgetActiveTimerShowRemoteRecording") == 0) MainMenuWidgetActiveTimerShowRemoteRecording = atoi(Value);
else if (strcmp(Name, "MainMenuWidgetActiveTimerShowRemoteRefreshTime") == 0) MainMenuWidgetActiveTimerShowRemoteRefreshTime = atoi(Value);
else if (strcmp(Name, "ChannelDvbapiInfoShow") == 0) ChannelDvbapiInfoShow = atoi(Value);
+ else if (strcmp(Name, "MenuItemRecordingSeenTreshold") == 0) MenuItemRecordingSeenTreshold = atod(Value);
else return false;
return true;