diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-03-15 12:14:19 +0100 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2010-03-31 15:37:33 +0200 |
| commit | 999ce875c6e93272ffd5aa001c492ea4f3a27b06 (patch) | |
| tree | 523e1f4f086cfe631e9ecc6aabe9d6e16aa3e37a /lib/python | |
| parent | 12d1740ffad949d51f9aa22a141aa04d74b51d44 (diff) | |
| download | enigma2-999ce875c6e93272ffd5aa001c492ea4f3a27b06.tar.gz enigma2-999ce875c6e93272ffd5aa001c492ea4f3a27b06.zip | |
[DVDBurn] allow burning of recordings that are currently playing in the background, fixes bug 367
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py b/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py index 61152e8a..06ed1bab 100644 --- a/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py +++ b/lib/python/Plugins/Extensions/DVDBurn/TitleCutter.py @@ -52,6 +52,8 @@ class TitleCutter(CutListEditor): CutListEditor.grabFrame(self) def exit(self): + if self.t.VideoType == -1: + self.getPMTInfo() self.checkAndGrabThumb() self.session.nav.stopService() self.close(self.cut_list[:]) |
