allow burning DVDs with multiple titles where playback automatically jumps to the...
[enigma2.git] / lib / python / Plugins / Extensions / DVDBurn / TitleCutter.py
1 from Plugins.Extensions.CutListEditor.plugin import CutListEditor
2
3 class TitleCutter(CutListEditor):
4         def __init__(self, session, title):
5                 CutListEditor.__init__(self, session, title.source)
6                 #, title.cutlist)
7
8         def exit(self):
9                 self.session.nav.stopService()
10                 self.close(self.cut_list[:])