Account for autoplay.if play_all is enabled AND auto_play is enabled then auto play all

This commit is contained in:
glenntanner3 2015-04-30 15:20:01 -04:00
parent d152729d2d
commit 8131fccd1f

View file

@ -100,7 +100,11 @@ class dvdauthor_converter(devedeng.executor.executor):
else: else:
xml_file.write('100;\n') #auto play xml_file.write('100;\n') #auto play
xml_file.write('\t\t\tg2=1024;\n') #highlight? xml_file.write('\t\t\tg2=1024;\n') #highlight?
xml_file.write('\t\t\tg3=0;\n') #play all variable xml_file.write('\t\t\tg3=') #play all variable
if play_all_opt and (menu_entries != None) and (start_with_menu):
xml_file.write('1;\n') #auto play all
else:
xml_file.write('0;\n') #do not play all
xml_file.write('\t\t\tjump menu 1;\n') xml_file.write('\t\t\tjump menu 1;\n')
xml_file.write('\t\t</fpc>\n') xml_file.write('\t\t</fpc>\n')