From 09086d59e79c04a38a9d85a46b91902f8051ba2b Mon Sep 17 00:00:00 2001 From: Jannis Jost Date: Fri, 12 Jul 2024 23:14:55 +0200 Subject: [PATCH] giga fix wow im so good --- source/GM-TE/GMTETileMap.class.st | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/source/GM-TE/GMTETileMap.class.st b/source/GM-TE/GMTETileMap.class.st index 72569100..b6ae0f58 100644 --- a/source/GM-TE/GMTETileMap.class.st +++ b/source/GM-TE/GMTETileMap.class.st @@ -56,7 +56,7 @@ GMTETileMap class >> maxLayers [ { #category : #'instance creation', - #'squeak_changestamp' : 'Ivo Zilkenat 7/12/2024 20:16' + #'squeak_changestamp' : 'mcjj 7/12/2024 23:10' } GMTETileMap class >> newFromEditableTileMap: aMap [ @@ -76,9 +76,11 @@ GMTETileMap class >> newFromEditableTileMap: aMap [ abandon. "Initially draw background tiles" - newMap updateTilesBackground. - newMap resetView. - newMap hasStaticView: true. + newMap + updateTilesBackground; + resetView; + hasStaticView: true; + reorderSubmorphsInLayers. ^ newMap ]