summaryrefslogtreecommitdiff
path: root/menu.c
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2015-01-29 09:05:50 +0100
committerKlaus Schmidinger <vdr@tvdr.de>2015-01-29 09:05:50 +0100
commit7f195606eeacb73b46208e8efdfbe1b7a4dbaaca (patch)
treecba218d9cb30ee708655a0dc9c5e48ee439e2ad2 /menu.c
parent91e01516746d43ddcfecf24d7382e590af97c1ef (diff)
downloadvdr-7f195606eeacb73b46208e8efdfbe1b7a4dbaaca.tar.gz
vdr-7f195606eeacb73b46208e8efdfbe1b7a4dbaaca.tar.bz2
Changed unit and range for binary skip timeout
Diffstat (limited to 'menu.c')
-rw-r--r--menu.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/menu.c b/menu.c
index b8d4a9c6..318f32c6 100644
--- a/menu.c
+++ b/menu.c
@@ -4,7 +4,7 @@
* See the main source file 'vdr.c' for copyright information and
* how to reach the author.
*
- * $Id: menu.c 3.30 2015/01/27 14:09:49 kls Exp $
+ * $Id: menu.c 3.31 2015/01/29 09:00:37 kls Exp $
*/
#include "menu.h"
@@ -3575,7 +3575,7 @@ cMenuSetupReplay::cMenuSetupReplay(void)
Add(new cMenuEditBoolItem(tr("Setup.Replay$Skip edited parts"), &data.SkipEdited));
Add(new cMenuEditBoolItem(tr("Setup.Replay$Pause replay at last mark"), &data.PauseAtLastMark));
Add(new cMenuEditIntItem( tr("Setup.Replay$Binary skip initial value (s)"), &data.BinarySkipInitial, 10, 600));
- Add(new cMenuEditIntItem( tr("Setup.Replay$Binary skip timeout (ms)"), &data.BinarySkipTimeout, 1000, 10000));
+ Add(new cMenuEditIntItem( tr("Setup.Replay$Binary skip timeout (s)"), &data.BinarySkipTimeout, 0, 10));
Add(new cMenuEditIntItem(tr("Setup.Replay$Resume ID"), &data.ResumeID, 0, 99));
}
@@ -4944,7 +4944,7 @@ int cBinarySkipper::GetValue(eKeys Key)
currentValue /= 2;
lastKey = kNone; // once the direction has changed, every further call halves the value
}
- timeout.Set(Setup.BinarySkipTimeout);
+ timeout.Set(Setup.BinarySkipTimeout * 1000);
return max(currentValue, 1);
}