mirror of
https://github.com/freedoom/freedoom.git
synced 2025-09-02 07:25:45 -04:00
REALLY sort on save this time
This commit is contained in:
parent
b4013acd97
commit
b343987531
1 changed files with 1 additions and 1 deletions
|
@ -323,7 +323,7 @@ class HellowWorldGTK:
|
|||
if not hasattr(self, "filename"):
|
||||
self.saveas_activated(arg)
|
||||
saveme = self.wip_textures.values()
|
||||
saveme.sort()
|
||||
saveme.sort(lambda a,b: cmp(a.name,b.name))
|
||||
writetome = open(self.filename,"w")
|
||||
writetome.write("".join(map(str,saveme)))
|
||||
writetome.close()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue