Ticket #9703: mythburn-menufreezefix.patch

File mythburn-menufreezefix.patch, 1.3 KB (added by ryanr23@…, 15 years ago)

mythburn patch

  • mythburn.py

    old new  
    29912991
    29922992        #Pick the correct intro movie based on video format ntsc/pal
    29932993        vob = dvddom.createElement("vob")
    2994         vob.setAttribute("pause","")
     2994        vob.setAttribute("pause","0")
    29952995        vob.setAttribute("file",os.path.join(getThemeFile(themeName, videomode + '_' + introFile)))
    29962996        pgc.appendChild(vob)
    29972997        del vob
     
    30093009        #For each menu page we need to create a new PGC structure
    30103010        menupgc = dvddom.createElement("pgc")
    30113011        menus_element.appendChild(menupgc)
    3012         menupgc.setAttribute("pause","inf")
    30133012
    30143013        menupgc.appendChild( dvddom.createComment("Menu Page %s" % page) )
    30153014
     
    30213020
    30223021        vob = dvddom.createElement("vob")
    30233022        vob.setAttribute("file",os.path.join(getTempPath(),"menu-%s.mpg" % page))
     3023        vob.setAttribute("pause", "inf");
    30243024        menupgc.appendChild(vob)   
    30253025
    30263026        #Loop menu forever
     
    30883088            if wantChapterMenu:
    30893089                mymenupgc = dvddom.createElement("pgc")
    30903090                menus.appendChild(mymenupgc)
    3091                 mymenupgc.setAttribute("pause","inf")
    30923091
    30933092                pre = dvddom.createElement("pre")
    30943093                mymenupgc.appendChild(pre)