[etoys-dev] Etoys: Morphic-bf.28.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Jun 26 08:43:12 EDT 2010


Bert Freudenberg uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-bf.28.mcz

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

Name: Morphic-bf.28
Author: bf
Time: 26 June 2010, 2:41:41 pm
UUID: ae57e80c-6d53-421e-90dd-521f5d245ef3
Ancestors: Morphic-bf.27

- prevent deleting paint palette (SQ-687, fix by Karl Ramberg)

=============== Diff against Morphic-bf.27 ===============

Item was added:
+ ----- Method: TransformationMorph>>resistsRemoval (in category 'geometry eToy') -----
+ resistsRemoval
+ 
+ 	| m |
+ 	^ ((m _ self renderedMorph) == self) ifTrue: [false] ifFalse: [m resistsRemoval].
+ !

Item was added:
+ ----- Method: TransformationMorph>>willingToBeDiscarded (in category 'geometry eToy') -----
+ willingToBeDiscarded
+ 
+ 	| m |
+ 	^ ((m _ self renderedMorph) == self) ifTrue: [false] ifFalse: [m willingToBeDiscarded].
+ !



More information about the etoys-dev mailing list