[squeak-dev] The Trunk: EToys-mt.475.mcz

commits at source.squeak.org commits at source.squeak.org
Wed May 11 08:55:23 UTC 2022


Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.475.mcz

==================== Summary ====================

Name: EToys-mt.475
Author: mt
Time: 11 May 2022, 10:55:16.684999 am
UUID: c3b91bc1-1208-1447-b45d-1548f440e8fc
Ancestors: EToys-xw.474

Fix hiccup with AnimatedImageMorph in EToys-xw.474 already moved to Morphic.

=============== Diff against EToys-xw.474 ===============

Item was removed:
- ----- Method: AnimatedImageMorph>>addCustomMenuItems:hand: (in category '*Etoys-Squeakland-stepping and presenter') -----
- addCustomMenuItems: aMenu hand: aHand
- 	super addCustomMenuItems: aMenu hand: aHand.
- 	aMenu addUpdating: #steppingString action: #toggleStepping!

Item was removed:
- ----- Method: AnimatedImageMorph>>setStepping: (in category '*Etoys-Squeakland-stepping and presenter') -----
- setStepping: aBoolean
- 	self wantsSteps ifFalse:[^false].
- 	aBoolean ifTrue:[self startStepping]
- 					ifFalse:[self stopStepping].
- !

Item was removed:
- ----- Method: AnimatedImageMorph>>steppingString (in category '*Etoys-Squeakland-stepping and presenter') -----
- steppingString
- 	^ (self isStepping
- 		ifTrue: ['<on>']
- 		ifFalse: ['<off>']), 'stepping' translated!

Item was removed:
- ----- Method: AnimatedImageMorph>>toggleStepping (in category '*Etoys-Squeakland-stepping and presenter') -----
- toggleStepping
- 	self wantsSteps
- 		ifTrue: [
- 			self isStepping
- 				ifFalse: [self startStepping]
- 				ifTrue: [self stopStepping]]!



More information about the Squeak-dev mailing list