The Inbox: MorphicExtras-ct.294.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: MorphicExtras-ct.294.mcz

commits-2
A new version of MorphicExtras was added to project The Inbox:
http://source.squeak.org/inbox/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!