From 7ae6b9f9b79a7fb2a94fcc4863f1cfdade7ce19b Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Fri, 23 Dec 2005 03:09:27 +0000 Subject: [PATCH] zap to the recording channel... otherwise user sees a black screen --- RecordTimer.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/RecordTimer.py b/RecordTimer.py index 7088bb47..37aecdbd 100644 --- a/RecordTimer.py +++ b/RecordTimer.py @@ -102,6 +102,7 @@ class RecordTimerEntry(timer.TimerEntry): if self.prepareOK: self.record_service.stop() self.record_service = None + print "Timer successfully ended" else: print "prepare failed, thus nothing was recorded." @@ -112,11 +113,13 @@ class RecordTimerEntry(timer.TimerEntry): def failureCB(self, answer): if answer == True: - NavigationInstance.instance.stopUserServices() + #NavigationInstance.instance.stopUserServices() + print "[RecordTimer] zapping to", self.service_ref + NavigationInstance.instance.playService(self.service_ref.ref) self.activate(self.EventPrepare) + if self.wantStart: print "post-activating record" - NavigationInstance.instance.playService(self.serviceref) self.activate(self.EventStart) else: print "user killed record" -- 2.30.2