summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-07-07 23:28:55 +0200
committerMartin Schirrmacher <vdr.skinflatplus@schirrmacher.eu>2014-07-07 23:28:55 +0200
commit01e216bd006aeff56dee99cbea3884bbb04aa8c6 (patch)
treedb467db1df2dd3c7130c69893a74673cc612d0c2 /config.c
parentfb8754336b6f4ec01295dec7c189ea0e86d4f482 (diff)
downloadskin-flatplus-01e216bd006aeff56dee99cbea3884bbb04aa8c6.tar.gz
skin-flatplus-01e216bd006aeff56dee99cbea3884bbb04aa8c6.tar.bz2
update topbar, add option diskusageshort
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;