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 2fef7cee..696a16c6 100644
--- a/config.c
+++ b/config.c
@@ -16,6 +16,7 @@ cFlatConfig::cFlatConfig(void) {
SignalQualityUseColors = false;
DiskUsageShow = true;
+ DiskUsageShort = false;
MenuContentFullSize = true;
@@ -235,6 +236,7 @@ bool cFlatConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "ScrollerStep") == 0) ScrollerStep = atoi(Value);
else if (strcmp(Name, "ScrollerDelay") == 0) ScrollerDelay = atoi(Value);
else if (strcmp(Name, "ScrollerType") == 0) ScrollerType = atoi(Value);
+ else if (strcmp(Name, "DiskUsageShort") == 0) DiskUsageShort = atoi(Value);
else return false;