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 d512fa7..04d46b1 100644
--- a/setup.c
+++ b/setup.c
@@ -86,6 +86,7 @@ void cTvGuideSetup::Setup(void) {
Add(new cMenuEditChanItem(tr("Start Channel"), &tmpConfig.favStartChannel));
Add(new cMenuEditChanItem(tr("Stop Channel"), &tmpConfig.favStopChannel));
}
+ Add(new cMenuEditIntItem(tr("Minutes a switchtimer switches before start of a show"), &tmpConfig.switchMinsBefore, 0, 10));
SetCurrent(Get(current));
Display();
@@ -130,6 +131,7 @@ void cTvGuideSetup::Store(void) {
SetupStore("favLimitChannels", config.favLimitChannels);
SetupStore("favStartChannel", config.favStartChannel);
SetupStore("favStopChannel", config.favStopChannel);
+ SetupStore("switchMinsBefore", config.switchMinsBefore);
}
eOSState cTvGuideSetup::ProcessKey(eKeys Key) {