diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2010-01-24 13:24:37 +0100 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2010-01-24 13:24:37 +0100 |
| commit | cecd9068fcba09234232399748d4a55ed7574e4b (patch) | |
| tree | 710a3b9c62f1b3df8cdfa6a731e0e4d2a31afc2a /lib/python/Screens/InfoBarGenerics.py | |
| parent | 0dfedee9efae9f34cea383b5b79dcd71828002b0 (diff) | |
| download | enigma2-cecd9068fcba09234232399748d4a55ed7574e4b.tar.gz enigma2-cecd9068fcba09234232399748d4a55ed7574e4b.zip | |
fixes bug #288
last playing position for recorded services was stored only if between 1% and 99% of the recording's length. this lead to voodoo for the user, since long recordings naturally have a longer 1% than short ones.
so the 1% rule is gone now and we display the position of the marker in the message box, asking the user if playing should continue at this position.
Diffstat (limited to 'lib/python/Screens/InfoBarGenerics.py')
| -rw-r--r-- | lib/python/Screens/InfoBarGenerics.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/python/Screens/InfoBarGenerics.py b/lib/python/Screens/InfoBarGenerics.py index 7ae0b123..ca9ba550 100644 --- a/lib/python/Screens/InfoBarGenerics.py +++ b/lib/python/Screens/InfoBarGenerics.py @@ -2014,8 +2014,10 @@ class InfoBarCueSheetSupport: if last is not None: self.resume_point = last + + l = last / 90000 if config.usage.on_movie_start.value == "ask": - Notifications.AddNotificationWithCallback(self.playLastCB, MessageBox, _("Do you want to resume this playback?"), timeout=10) + Notifications.AddNotificationWithCallback(self.playLastCB, MessageBox, _("Do you want to resume this playback?") + "\n" + (_("Resume position at %s") % ("%d:%02d:%02d" % (l/3600, l%3600/60, l%60))), timeout=10) elif config.usage.on_movie_start.value == "resume": # TRANSLATORS: The string "Resuming playback" flashes for a moment # TRANSLATORS: at the start of a movie, when the user has selected |
