teabaiseach

Member
Nov 12, 2017
118
107
339
Why on earth is there no option to delete saves? Even the thing when you hover over a save and press delete isn't working and that should be a feature that's in renpy by default.
you can add the delete key back in if you add key "save_delete" action FileDelete(slot) into screens.rpy below style "slot_name_text" line 801 so it looks like
Python:
                            if FileSaveName(slot):
                                $ fn = FileSaveName(slot)
                                if fn and ("-" in fn):
                                    $ y = fn.split("-")
                                text fn:
                                    style "slot_name_text"
                            key "save_delete" action FileDelete(slot)
No idea if it needs to be there but I tested it and it works there. I'm in habit of replacing any and all save naming stuff no idea why folks don't just rename the page title. At least the bad mustard code doesn't completly break keyboard navigation like the persistant text input box ones that are set to grab all key input.
 
  • Like
Reactions: Aioto

Aioto

Well-Known Member
Oct 31, 2018
1,204
1,194
409
No idea if it needs to be there but I tested it and it works there. I'm in habit of replacing any and all save naming stuff no idea why folks don't just rename the page title. At least the bad mustard code doesn't completly break keyboard navigation like the persistant text input box ones that are set to grab all key input.
The ones that have an always on text box for naming usually work when I switch to the load screen instead of the save screen.
 
4.10 star(s) 17 Votes