Fixed the menu working when using the Play all option
This commit is contained in:
parent
5a6853a764
commit
d977cfb2ef
3 changed files with 10 additions and 5 deletions
|
|
@ -1,4 +1,7 @@
|
|||
## History of versions ##
|
||||
* version 4.5.0 (2016-01-02)
|
||||
* Reduced the height of the MENU window
|
||||
* Now the menu works fine when enabling the "Play all" option
|
||||
|
||||
* version 4.4.0 (2015-11-07)
|
||||
* Removed MPlayer as an option for getting movie information
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -64,7 +64,7 @@ except:
|
|||
setup(
|
||||
name='devedeng',
|
||||
|
||||
version='4.4.0',
|
||||
version='4.5.0',
|
||||
|
||||
description='A video DVD creator',
|
||||
long_description = "A program that allows to create video DVDs",
|
||||
|
|
|
|||
|
|
@ -213,13 +213,15 @@ class dvdauthor_converter(devedeng.executor.executor):
|
|||
for nbutton in menu_page["chapters"]:
|
||||
#xml_file.write('\t\t\t\t<button name="'+nbutton+'"> g0='+str(title_list[button_counter])+'; jump vmgm menu; </button>\n')
|
||||
xml_file.write('\t\t\t\t<button name="'+nbutton+'">\n')
|
||||
xml_file.write('\t\t\t\t\tg0='+str(title_list[button_counter])+';\n')
|
||||
if play_all_opt and nbutton == "boton0x0":
|
||||
xml_file.write('\t\t\t\t\tg3=1;\n')
|
||||
xml_file.write('\t\t\t\t\tg0=1;\n')
|
||||
xml_file.write('\t\t\t\t\tjump vmgm menu;\n')
|
||||
else:
|
||||
xml_file.write('\t\t\t\t\tg0='+str(title_list[button_counter])+';\n')
|
||||
xml_file.write('\t\t\t\t\tjump vmgm menu;\n')
|
||||
xml_file.write('\t\t\t\t</button>\n')
|
||||
if not play_all_opt:
|
||||
button_counter+=1
|
||||
xml_file.write('\t\t\t\t</button>\n')
|
||||
|
||||
if (menu_page["left"] != None):
|
||||
xml_file.write('\t\t\t\t<button name="'+menu_page["left"]+'"> g1=')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue