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 /setup.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 'setup.c')
-rw-r--r-- | setup.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -89,6 +89,7 @@ void cNopacitySetup::Store(void) { SetupStore("volumeFadeTime", config.volumeFadeTime); SetupStore("volumeWidth", config.volumeWidth); SetupStore("volumeHeight", config.volumeHeight); + SetupStore("volumeBorderBottom", config.volumeBorderBottom); SetupStore("fontVolume", config.fontVolume); SetupStore("scalePicture", config.scalePicture); SetupStore("menuFadeTime", config.menuFadeTime); @@ -295,6 +296,7 @@ void cNopacitySetupVolumeDisplay::Set(void) { Add(new cMenuEditIntItem(tr("Fade-In Time in ms (Zero for switching off fading)"), &tmpNopacityConfig->volumeFadeTime, 0, 1000)); Add(new cMenuEditIntItem(tr("Width of Volume Display (Percent of OSD Height)"), &tmpNopacityConfig->volumeWidth, 10, 100)); Add(new cMenuEditIntItem(tr("Hight of Volume Display (Percent of OSD Height)"), &tmpNopacityConfig->volumeHeight, 5, 100)); + Add(new cMenuEditIntItem(tr("Bottom Border Height"), &tmpNopacityConfig->volumeBorderBottom, 0, 1000)); Add(new cMenuEditIntItem(tr("Adjust Font Size"), &tmpNopacityConfig->fontVolume, -30, 30)); SetCurrent(Get(currentItem)); |