summaryrefslogtreecommitdiff
path: root/setup.c
diff options
context:
space:
mode:
Diffstat (limited to 'setup.c')
-rw-r--r--setup.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/setup.c b/setup.c
index c178cba..5ac61c4 100644
--- a/setup.c
+++ b/setup.c
@@ -51,6 +51,7 @@ void cTvGuideSetup::Setup(void) {
Add(new cMenuEditStraItem(tr("Functionality of numeric Keys"), &tmpConfig.numKeyMode, 2, numMode));
Add(new cMenuEditStraItem(tr("Keys Blue and OK"), &tmpConfig.blueKeyMode, 3, blueMode));
Add(new cMenuEditBoolItem(tr("\"Intelligent\" channel switch mode"), &tmpConfig.intelligentSwitch));
+ Add(new cMenuEditBoolItem(tr("Use Subtitle for reruns"), &tmpConfig.useSubtitleRerun));
Add(new cMenuEditIntItem(tr("Maximum number of reruns to display"), &tmpConfig.rerunAmount, 1, 100));
Add(new cMenuEditIntItem(tr("Minimum timely distance of rerun (in hours)"), &tmpConfig.rerunDistance, 0, 1000));
Add(new cMenuEditIntItem(tr("Limit Channel Numbers for reruns"), &tmpConfig.rerunMaxChannel, 0, 1000, tr("no limit")));
@@ -112,6 +113,7 @@ void cTvGuideSetup::Store(void) {
SetupStore("numKeyMode", config.numKeyMode);
SetupStore("blueKeyMode", config.blueKeyMode);
SetupStore("intelligentSwitch", config.intelligentSwitch);
+ SetupStore("UseSubtitleRerun", config.useSubtitleRerun);
SetupStore("rerunAmount", config.rerunAmount);
SetupStore("rerunDistance", config.rerunDistance);
SetupStore("rerunMaxChannel", config.rerunMaxChannel);