Ren'Py Patch to enable "Quick Load" link in quick menu

baloneysammich

Active Member
Jun 3, 2017
994
1,522
For whatever reason, the dev of Radiant decided to disable (or not enable) the "Quick Load" link in the quick menu.

Anyone know if there's a way to re-enable it with a patch?
 

anne O'nymous

I'm not grumpy, I'm just coded that way.
Modder
Donor
Respected User
Jun 10, 2017
10,369
15,284
For whatever reason, the dev of Radiant decided to disable (or not enable) the "Quick Load" link in the quick menu.

Anyone know if there's a way to re-enable it with a patch?
Python:
init 10 python:
    config.overlay_screens.append( "QLoadFix" )

screen QLoadFix():

    zorder 100

    if quick_menu:
        hbox:
            style_prefix "quick"
            textbutton _("Q.Load"):
                xpos 500   # Adjust to the position you want
                ypos 1.0    # This one should be good.
                action QuickLoad()
 
  • Like
Reactions: baloneysammich

baloneysammich

Active Member
Jun 3, 2017
994
1,522
Sorry, for some reason I missed the notifications about y'all's responses.

Sancho ended up making a modification to his mod to add the link back in, presumably similar to what rayminator offered.

But I'll keep anne O'nymous solution in mind in case I ever encounter something like this again.