From fbe0277f0eb1df3a05d7fe1bcf75436aac509fb9 Mon Sep 17 00:00:00 2001 From: Aleksander Morgensterns Date: Sat, 6 Jul 2024 23:08:48 +0200 Subject: [PATCH] fixed buttons --- source/GM-TE/GMTEImageButton.class.st | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/source/GM-TE/GMTEImageButton.class.st b/source/GM-TE/GMTEImageButton.class.st index 106ab4ae..998e10b7 100644 --- a/source/GM-TE/GMTEImageButton.class.st +++ b/source/GM-TE/GMTEImageButton.class.st @@ -102,14 +102,15 @@ GMTEImageButton >> doButtonAction [ { #category : #accessing, - #'squeak_changestamp' : 'jj 6/22/2024 16:48' + #'squeak_changestamp' : 'Alex M 7/6/2024 23:07' } GMTEImageButton >> dyeSprite: anImage with: aColor [ ^ anImage copy replaceColor: Color white withColor: Color transparent; - replaceColor: Color black withColor: aColor; - yourself + "replaceColor: Color black withColor: aColor; + yourself" + dyed: aColor ] {