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