The Inbox: Morphic-kfr.729.mcz

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

The Inbox: Morphic-kfr.729.mcz

commits-2
A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-kfr.729.mcz

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

Name: Morphic-kfr.729
Author: kfr
Time: 1 July 2014, 12:34:39.067 pm
UUID: cdb79fa5-368d-3d42-afea-55b46ab7c168
Ancestors: Morphic-dtl.728

MenuMorph example was not working. Fixed

=============== Diff against Morphic-dtl.728 ===============

Item was changed:
  ----- Method: MenuMorph class>>example (in category 'example') -----
  example
+ "MenuMorph example popUpInWorld"
- "MenuMorph example"
 
  | menu |
  menu := MenuMorph new.
+ menu addTitle: 'Fruit' translated.
  menu addStayUpItem.
  menu add: 'apples' action: #apples.
  menu add: 'oranges' action: #oranges.
  menu addLine.
  menu addLine.  "extra lines ignored"
  menu add: 'peaches' action: #peaches.
  menu addLine.
  menu add: 'pears' action: #pears.
  menu addLine.
  ^ menu
  !