Skip to content

Commit f4b0096

Browse files
committed
[InstantRecordTimerEdit]
* Do not reset the margin for zap timers to keep them consistent with non instand record timers. Close #3675
1 parent ec334bd commit f4b0096

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

lib/python/Screens/Timers.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1816,7 +1816,9 @@ def __init__(self, session, timer, zap=0, zaprecord=0):
18161816

18171817
def keySave(self, result=None):
18181818
if self.timer.justplay:
1819-
self.timer.begin += config.recording.zap_margin_before.value * 60
1819+
# Reset margins for zap timers.
1820+
# self.timer.begin += config.recording.zap_margin_before.value * 60
1821+
# self.timer.marginBefore = 0
18201822
self.timer.hasEndTime = config.recording.zap_has_endtime.value
18211823
if not self.timer.hasEndTime:
18221824
self.timer.end = self.timer.begin + 1

0 commit comments

Comments
 (0)