summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
authorlouis <louis.braun@gmx.de>2013-05-28 16:57:21 +0200
committerlouis <louis.braun@gmx.de>2013-05-28 16:57:21 +0200
commita90ee76c4b36a9d11fa63e6a454a362cff7dcb31 (patch)
tree49ab50e70dcb2e2513d84005be03c4b459258ee7 /setup.c
parentb3b50abd736da0199297cab5d080055ed55c05bd (diff)
downloadvdr-plugin-tvguide-a90ee76c4b36a9d11fa63e6a454a362cff7dcb31.tar.gz
vdr-plugin-tvguide-a90ee76c4b36a9d11fa63e6a454a362cff7dcb31.tar.bz2
setup of usage of blending now done with clrDoBlending theme color variable
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/setup.c b/setup.c
index ebb94dd..aac537e 100644
--- a/setup.c
+++ b/setup.c
@@ -51,7 +51,6 @@ void cTvguideSetup::Store(void) {
SetupStore("statusHeaderPercent", tvguideConfig.statusHeaderPercent);
SetupStore("scaleVideo", tvguideConfig.scaleVideo);
SetupStore("decorateVideo", tvguideConfig.decorateVideo);
- SetupStore("useBlending", tvguideConfig.useBlending);
SetupStore("roundedCorners", tvguideConfig.roundedCorners);
SetupStore("timeFormat", tvguideConfig.timeFormat);
SetupStore("channelCols", tvguideConfig.channelCols);
@@ -128,9 +127,6 @@ cMenuSetupGeneral::cMenuSetupGeneral(cTvguideConfig* data) : cMenuSetupSubMenu(
themes.Load(*cString("tvguide"));
timeFormatItems[0] = "12h";
timeFormatItems[1] = "24h";
- blendingMethods[0] = "none";
- blendingMethods[1] = "classic";
- blendingMethods[2] = "nOpacity style";
useSubtitleRerunTexts[0] = tr("never");
useSubtitleRerunTexts[1] = tr("if exists");
useSubtitleRerunTexts[2] = tr("always");
@@ -143,7 +139,6 @@ void cMenuSetupGeneral::Set(void) {
Clear();
if (themes.NumThemes())
Add(new cMenuEditStraItem(tr("Theme"), &tmpTvguideConfig->themeIndex, themes.NumThemes(), themes.Descriptions()));
- Add(new cMenuEditStraItem(tr("Use color gradients"), &tmpTvguideConfig->useBlending, 3, blendingMethods));
Add(new cMenuEditBoolItem(tr("Rounded Corners"), &tmpTvguideConfig->roundedCorners));
Add(new cMenuEditIntItem(tr("Channels to Jump (Keys Green / Yellow)"), &tmpTvguideConfig->jumpChannels, 2, 30));