aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/InfoBar.py4
-rw-r--r--lib/python/Screens/InfoBarGenerics.py22
2 files changed, 15 insertions, 11 deletions
diff --git a/lib/python/Screens/InfoBar.py b/lib/python/Screens/InfoBar.py
index ff8e73d2..471b1abe 100644
--- a/lib/python/Screens/InfoBar.py
+++ b/lib/python/Screens/InfoBar.py
@@ -82,12 +82,12 @@ class MoviePlayer(InfoBarShowHide, \
InfoBarServiceName, InfoBarSeek, InfoBarShowMovies, InfoBarAudioSelection, HelpableScreen, InfoBarNotifications,
InfoBarServiceNotifications, InfoBarPVRState, InfoBarCueSheetSupport, InfoBarSimpleEventView,
InfoBarSummarySupport, InfoBarTeletextPlugin, InfoBarSubtitleSupport, Screen):
+
+ ENABLE_RESUME_SUPPORT = True
def __init__(self, session, service):
Screen.__init__(self, session)
- self.is_closing = False
-
self["actions"] = HelpableActionMap(self, "MoviePlayerActions",
{
"leavePlayer": (self.leavePlayer, _("leave movie player..."))
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py
index 42a7eb82..754b673a 100644
--- a/lib/python/Screens/InfoBarGenerics.py
+++ b/lib/python/Screens/InfoBarGenerics.py
@@ -1445,6 +1445,8 @@ class InfoBarCueSheetSupport:
CUT_TYPE_MARK = 2
CUT_TYPE_LAST = 3
+ ENABLE_RESUME_SUPPORT = False
+
def __init__(self):
self["CueSheetActions"] = HelpableActionMap(self, "InfobarCueSheetActions",
{
@@ -1454,6 +1456,7 @@ class InfoBarCueSheetSupport:
}, prio=1)
self.cut_list = [ ]
+ self.is_closing = False
self.__event_tracker = ServiceEventTracker(screen=self, eventmap=
{
iPlayableService.evStart: self.__serviceStarted,
@@ -1465,16 +1468,17 @@ class InfoBarCueSheetSupport:
print "new service started! trying to download cuts!"
self.downloadCuesheet()
- last = None
-
- for (pts, what) in self.cut_list:
- if what == self.CUT_TYPE_LAST:
- last = pts
+ if self.ENABLE_RESUME_SUPPORT:
+ last = None
- if last is not None:
- self.resume_point = last
- Notifications.AddNotificationWithCallback(self.playLastCB, MessageBox, _("Do you want to resume this playback?"), timeout=10)
-
+ for (pts, what) in self.cut_list:
+ if what == self.CUT_TYPE_LAST:
+ last = pts
+
+ if last is not None:
+ self.resume_point = last
+ Notifications.AddNotificationWithCallback(self.playLastCB, MessageBox, _("Do you want to resume this playback?"), timeout=10)
+
def playLastCB(self, answer):
if answer == True:
seekable = self.__getSeekable()