update sprites and double the width for sprites

This commit is contained in:
Fabian Dill
2020-06-23 05:58:27 +02:00
parent 53d3b4eb38
commit 8d3961b6fb
55 changed files with 1 additions and 1 deletions

2
Gui.py
View File

@@ -1348,7 +1348,7 @@ class SpriteSelector(object):
button = Button(frame, image=image, command=lambda spr=sprite: self.select_sprite(spr))
ToolTips.register(button, sprite.name + ("\nBy: %s" % sprite.author_name if sprite.author_name else ""))
button.image = image
button.grid(row=i // 16, column=i % 16)
button.grid(row=i // 32, column=i % 32)
i += 1
if i == 0: