summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorkamel5 <vdr.kamel5 (at) gmx (dot) net>2021-06-11 15:56:45 +0200
committerkamel5 <vdr.kamel5 (at) gmx (dot) net>2021-07-12 13:41:16 +0200
commit4b1edb5a90c742aa7f34bf5910f9d75774011054 (patch)
treee4163bd3bd8b602b32896ded43e33792c139bb1e /setup.c
parent4358bf876579464772f98cc3aa43af345d127880 (diff)
downloadskin-nopacity-4b1edb5a90c742aa7f34bf5910f9d75774011054.tar.gz
skin-nopacity-4b1edb5a90c742aa7f34bf5910f9d75774011054.tar.bz2
Add fade-out to display tracks
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/setup.c b/setup.c
index d5148bc..c4109e2 100644
--- a/setup.c
+++ b/setup.c
@@ -461,6 +461,7 @@ void cNopacitySetupTrackDisplay::Set(void) {
int currentItem = Current();
Clear();
Add(new cMenuEditIntItem(tr("Fade-In Time in ms (Zero for switching off fading)"), tmpConf->GetValueRef("tracksFadeTime"), 0, 1000));
+ Add(new cMenuEditIntItem(tr("Fade-Out Time in ms (Zero for switching off fading)"), tmpConf->GetValueRef("tracksFadeOutTime"), 0, 1000));
Add(new cMenuEditIntItem(tr("Width of Tracks Display (Percent of OSD Width)"), tmpConf->GetValueRef("tracksWidth"), 10, 100));
Add(new cMenuEditIntItem(tr("Height of Track Items (in pixels)"), tmpConf->GetValueRef("tracksItemHeight"), 30, 200));
Add(new cMenuEditIntItem(tr("Position (0: bot. center, 1: bot. left, ... , 7: bot. right)"), tmpConf->GetValueRef("tracksPosition"), 0, 7));