[squeak-dev] The Trunk: MorphicExtras-ct.294.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Oct 7 14:40:44 UTC 2021


Marcel Taeumel uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-ct.294.mcz

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

Name: MorphicExtras-ct.294
Author: ct
Time: 17 April 2021, 2:51:54.531043 pm
UUID: c53b8fad-931b-0042-9e5b-70308fa24666
Ancestors: MorphicExtras-eem.293

Make proper use of DisplayScreen >>#restoreAfter: in SketchMorph examples.

=============== Diff against MorphicExtras-eem.293 ===============

Item was changed:
  ----- Method: SketchMorph class>>extraExampleCook (in category '*MorphicExtras-examples') -----
  extraExampleCook
  	"SketchMorph extraExampleCook openInWorld"
  
  	^ (self withForm: Form extraCook)
+ 		addMouseUpActionWith: 'Display restoreAfter: [Form toothpaste: 30]';
- 		addMouseUpActionWith: 'Form toothpaste: 30';
  		balloonText: 'Click me and then drag the cursor over the screen';
  		yourself!

Item was changed:
  ----- Method: SketchMorph class>>extraExampleWizard (in category '*MorphicExtras-examples') -----
  extraExampleWizard
  	"SketchMorph extraExampleWizard openInWorld"
  
  	^ (self withForm: Form extraWizard)
  		addMouseUpActionWith:
+ 			(MessageSend receiver: Display selector: #restoreAfter: argument: [Pen new web]);
- 			(MessageSend receiver: Pen new selector: #web);
  		balloonText: 'Click me and then drag the cursor over the screen\(Trust me, I won''t turn you into a toad!!)' withCRs;
  		yourself!



More information about the Squeak-dev mailing list