Update UI when play_all option is changed.Fix return value check.Add 'Play All' to dvd menu preview.

This commit is contained in:
glenntanner3 2015-04-29 17:04:19 -04:00
parent a9b8d4bb2b
commit 516ae862b4
3 changed files with 18 additions and 4 deletions

View file

@ -37,7 +37,7 @@ class dvdauthor_converter(devedeng.executor.executor):
except:
pass
xml_file = self.create_dvdauthor_xml(path, file_movies, menu_entries, start_with_menu)
xml_file = self.create_dvdauthor_xml(path, file_movies, menu_entries, start_with_menu, play_all_opt)
self.command_var=[]
self.command_var.append("dvdauthor")
@ -59,7 +59,7 @@ class dvdauthor_converter(devedeng.executor.executor):
return
def create_dvdauthor_xml(self,movie_folder, file_movies, menu_entries, start_with_menu):
def create_dvdauthor_xml(self,movie_folder, file_movies, menu_entries, start_with_menu, play_all_opt):
xmlpath = os.path.join(movie_folder,"xml_data")
xml_file_path = os.path.join(xmlpath,"dvdauthor.xml")