summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2014-02-07 18:19:41 +0100
committerlouis <louis.braun@gmx.de>2014-02-07 18:19:41 +0100
commitdad778ee7bbc00b6130f7d613a7e133c4fb844eb (patch)
tree62a9925096fe6fa03d61598352bf4445f755e759
parent6285d8a85aef8733bc85ea12276c938a64defc28 (diff)
downloadvdr-plugin-tvguide-dad778ee7bbc00b6130f7d613a7e133c4fb844eb.tar.gz
vdr-plugin-tvguide-dad778ee7bbc00b6130f7d613a7e133c4fb844eb.tar.bz2
Set minimum time to display in Plugin Setup from 120 to 60 minutes
-rw-r--r--HISTORY1
-rw-r--r--setup.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/HISTORY b/HISTORY
index 7850950..1d899e9 100644
--- a/HISTORY
+++ b/HISTORY
@@ -128,3 +128,4 @@ Version 1.2.0
down directly with left / right. A recording is triggered now with the
red key.
- Added possibility to create a recording from search timer result list
+- Set minimum time to display in Plugin Setup from 120 to 60 minutes
diff --git a/setup.c b/setup.c
index 8e58fac..f80eef3 100644
--- a/setup.c
+++ b/setup.c
@@ -206,7 +206,7 @@ void cMenuSetupGeneral::Set(void) {
if (themes.NumThemes())
Add(new cMenuEditStraItem(cString::sprintf("%s%s", *indent, tr("Theme")), &tmpTvguideConfig->themeIndex, themes.NumThemes(), themes.Descriptions()));
}
- Add(new cMenuEditIntItem(tr("Time to display in minutes"), &tmpTvguideConfig->displayTime, 120, 320));
+ Add(new cMenuEditIntItem(tr("Time to display in minutes"), &tmpTvguideConfig->displayTime, 60, 320));
Add(new cMenuEditBoolItem(tr("Rounded Corners"), &tmpTvguideConfig->roundedCorners));
Add(new cMenuEditStraItem(tr("Channel Jump Mode (Keys Green / Yellow)"), &tmpTvguideConfig->channelJumpMode, 2, jumpMode));