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 9ce193c..7d0c9dc 100644
--- a/config.c
+++ b/config.c
@@ -78,6 +78,7 @@ cNopacityConfig::cNopacityConfig() {
menuWidthChannels = 30;
menuWidthTimers = 30;
menuWidthRecordings = 30;
+ menuWidthSetup = 30;
menuHeightInfoWindow = 20;
menuScrollDelay = 1;
menuScrollSpeed = 2;
@@ -263,6 +264,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "menuWidthChannels") == 0) menuWidthChannels = atoi(Value);
else if (strcmp(Name, "menuWidthTimers") == 0) menuWidthTimers = atoi(Value);
else if (strcmp(Name, "menuWidthRecordings") == 0) menuWidthRecordings = atoi(Value);
+ else if (strcmp(Name, "menuWidthSetup") == 0) menuWidthSetup = atoi(Value);
else if (strcmp(Name, "menuWidthRightItems") == 0) menuWidthRightItems = atoi(Value);
else if (strcmp(Name, "menuSizeDiskUsage") == 0) menuSizeDiskUsage = atoi(Value);
else if (strcmp(Name, "menuHeightInfoWindow") == 0) menuHeightInfoWindow = atoi(Value);