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 /setup.c | |
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
Diffstat (limited to 'setup.c')
-rw-r--r-- | setup.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)); |