diff options
author | root <root@maschine.(none)> | 2012-11-28 19:24:33 +0100 |
---|---|---|
committer | root <root@maschine.(none)> | 2012-11-28 19:24:33 +0100 |
commit | 33490ca83038daf6aee214975c0e51c46baca495 (patch) | |
tree | 1249765dd217b002fda558a2f579c30b0f060db2 /config.c | |
parent | 4b51af06327270caa4f38c31f28cdfbc1baabc4e (diff) | |
download | skin-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.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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); |