diff options
Diffstat (limited to 'config.c')
-rw-r--r-- | config.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -91,6 +91,7 @@ cNopacityConfig::cNopacityConfig() { menuSizeDiskUsage = 12; showDiscUsage = 1; showTimers = 1; + numberTimers = 10; checkTimerConflict = 1; headerHeight = 7; footerHeight = 7; @@ -274,6 +275,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) { else if (strcmp(Name, "menuHeightInfoWindow") == 0) menuHeightInfoWindow = atoi(Value); else if (strcmp(Name, "showDiscUsage") == 0) showDiscUsage = atoi(Value); else if (strcmp(Name, "showTimers") == 0) showTimers = atoi(Value); + else if (strcmp(Name, "numberTimers") == 0) numberTimers = atoi(Value); else if (strcmp(Name, "checkTimerConflict") == 0) checkTimerConflict = atoi(Value); else if (strcmp(Name, "headerHeight") == 0) headerHeight = atoi(Value); else if (strcmp(Name, "footerHeight") == 0) footerHeight = atoi(Value); |