kyouryuukunn / renpy-ActionEditor3

125 stars 13 forks source link

Quick Menu shows up on Action Editor so I edited it to turn it off like skipping. #38

Closed paxogre closed 1 month ago

paxogre commented 1 month ago

This isn't really much of a problem, but I edited Action Editor to toggle the quick_menu so it wouldn't interfere with me interacting with the interface.

def open_action_editor():
...
        _skipping_org = renpy.store._skipping
        renpy.store._skipping = False
        change_time(0)
        _quick_menu_org = renpy.store.quick_menu
        renpy.store.quick_menu = False
        if persistent._viewer_legacy_gui:
            renpy.call_screen("_action_editor")
        else:
            renpy.call_screen("_new_action_editor")
        renpy.store._skipping = _skipping_org
        renpy.store._window = _window
        renpy.store.quick_menu = _quick_menu_org