[etoys-dev] Etoys Inbox: Morphic-kfr.108.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Feb 2 17:16:33 EST 2014


A new version of Morphic was added to project Etoys Inbox:
http://source.squeak.org/etoysinbox/Morphic-kfr.108.mcz

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

Name: Morphic-kfr.108
Author: kfr
Time: 2 February 2014, 11:14:28 pm
UUID: da3aed38-7181-6b43-962a-56312f3497d8
Ancestors: Morphic-bf.107

A stab at
http://tracker.squeakland.org/browse/SQ-1146

=============== Diff against Morphic-bf.107 ===============

Item was changed:
  ----- Method: Morph>>arrangeToStartStepping (in category 'stepping and presenter') -----
  arrangeToStartStepping
  	"Arrange to start getting sent the 'step' message, but don't do that initial #step call that startStepping does"
+ 	| myWorld |
+ 	myWorld := self world.
+ 	myWorld ifNil: [(self ownerSatisfying:
+ 			[:m | m isFlap]) ifNotNil:[ myWorld := ActiveWorld]].
  
+ 	self arrangeToStartSteppingIn: myWorld !
- 	self arrangeToStartSteppingIn: self world!

Item was changed:
  ----- Method: Morph>>shouldGetStepsFrom: (in category 'WiW support') -----
  shouldGetStepsFrom: aWorld
+ 	(self ownerSatisfying:[:m | m isFlap] ) ifNotNil:[^true].
  	^self world == aWorld!



More information about the etoys-dev mailing list