summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
Diffstat (limited to 'config.c')
-rw-r--r--config.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.c b/config.c
index b3bd0d7..7a44657 100644
--- a/config.c
+++ b/config.c
@@ -125,6 +125,8 @@ cNopacityConfig::cNopacityConfig() {
epgImageWidthLarge = 525;
epgImageHeightLarge = 400;
menuRecFolderSize = 128;
+ borderDetailedEPG = 30;
+ borderDetailedRecordings = 30;
fontHeader = 0;
fontDate = 0;
fontMenuitemLarge = 0;
@@ -406,6 +408,8 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "epgImageWidthLarge") == 0) epgImageWidthLarge = atoi(Value);
else if (strcmp(Name, "epgImageHeightLarge") == 0) epgImageHeightLarge = atoi(Value);
else if (strcmp(Name, "menuRecFolderSize") == 0) menuRecFolderSize = atoi(Value);
+ else if (strcmp(Name, "borderDetailedEPG") == 0) borderDetailedEPG = atoi(Value);
+ else if (strcmp(Name, "borderDetailedRecordings") == 0) borderDetailedRecordings = atoi(Value);
else if (strcmp(Name, "fontHeader") == 0) fontHeader = atoi(Value);
else if (strcmp(Name, "fontDate") == 0) fontDate = atoi(Value);
else if (strcmp(Name, "fontMenuitemLarge") == 0) fontMenuitemLarge = atoi(Value);