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 811f3d5..ecd579d 100644
--- a/config.c
+++ b/config.c
@@ -24,6 +24,7 @@ cNopacityConfig::cNopacityConfig() {
symbolStyle = 0;
roundedCornersChannel = 1;
displaySignalStrength = 1;
+ displaySourceInfo = 1;
displayPrevNextChannelGroup = 1;
fontChannelHeaderSize = 0;
fontChannelDateSize = 0;
@@ -307,6 +308,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "symbolStyle") == 0) symbolStyle = atoi(Value);
else if (strcmp(Name, "roundedCornersChannel") == 0) roundedCornersChannel = atoi(Value);
else if (strcmp(Name, "displaySignalStrength") == 0) displaySignalStrength = atoi(Value);
+ else if (strcmp(Name, "displaySourceInfo") == 0) displaySourceInfo = atoi(Value);
else if (strcmp(Name, "displayPrevNextChannelGroup") == 0) displayPrevNextChannelGroup = atoi(Value);
else if (strcmp(Name, "fontChannelHeaderSize") == 0) fontChannelHeaderSize = atoi(Value);
else if (strcmp(Name, "fontChannelDateSize") == 0) fontChannelDateSize = atoi(Value);