diff options
author | louis <louis.braun@gmx.de> | 2014-02-07 18:19:41 +0100 |
---|---|---|
committer | louis <louis.braun@gmx.de> | 2014-02-07 18:19:41 +0100 |
commit | dad778ee7bbc00b6130f7d613a7e133c4fb844eb (patch) | |
tree | 62a9925096fe6fa03d61598352bf4445f755e759 | |
parent | 6285d8a85aef8733bc85ea12276c938a64defc28 (diff) | |
download | vdr-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-- | HISTORY | 1 | ||||
-rw-r--r-- | setup.c | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -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 @@ -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)); |