summaryrefslogtreecommitdiff
path: root/config.c
diff options
context:
space:
mode:
authorroot <root@maschine.(none)>2012-11-28 19:24:33 +0100
committerroot <root@maschine.(none)>2012-11-28 19:24:33 +0100
commit33490ca83038daf6aee214975c0e51c46baca495 (patch)
tree1249765dd217b002fda558a2f579c30b0f060db2 /config.c
parent4b51af06327270caa4f38c31f28cdfbc1baabc4e (diff)
downloadskin-nopacity-33490ca83038daf6aee214975c0e51c46baca495.tar.gz
skin-nopacity-33490ca83038daf6aee214975c0e51c46baca495.tar.bz2
Integrated patches from maverick-me, resolved Tickets 1141, 1143, 1151, 1152
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 7368aad..d9fe332 100644
--- a/config.c
+++ b/config.c
@@ -49,6 +49,7 @@ cNopacityConfig::cNopacityConfig() {
volumeFadeTime = 300;
volumeWidth = 40;
volumeHeight = 10;
+ volumeBorderBottom = 10;
fontVolume = 0;
//DisplayMenu
scalePicture = 1;
@@ -165,6 +166,7 @@ bool cNopacityConfig::SetupParse(const char *Name, const char *Value) {
else if (strcmp(Name, "volumeFadeTime") == 0) volumeFadeTime = atoi(Value);
else if (strcmp(Name, "volumeWidth") == 0) volumeWidth = atoi(Value);
else if (strcmp(Name, "volumeHeight") == 0) volumeHeight = atoi(Value);
+ else if (strcmp(Name, "volumeBorderBottom") == 0) volumeBorderBottom = atoi(Value);
else if (strcmp(Name, "fontVolume") == 0) fontVolume = atoi(Value);
else if (strcmp(Name, "menuFadeTime") == 0) menuFadeTime = atoi(Value);
else if (strcmp(Name, "scalePicture") == 0) scalePicture = atoi(Value);