The Trunk: Morphic-eem.726.mcz

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

The Trunk: Morphic-eem.726.mcz

commits-2
Eliot Miranda uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-eem.726.mcz

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

Name: Morphic-eem.726
Author: eem
Time: 27 June 2014, 3:46:59.938 pm
UUID: 7d5e6372-d581-4e1b-987c-9a7edd1e0d06
Ancestors: Morphic-cmm.725

Open a SystemReporter in response to the About Squeak...
menu pick.

=============== Diff against Morphic-cmm.725 ===============

Item was changed:
  ----- Method: TheWorldMainDockingBar>>aboutSqueak (in category 'menu actions') -----
  aboutSqueak
+ false
+ ifTrue:
+ [UserDialogBoxMorph
+ inform: Smalltalk systemInformationString withCRs
+ title: 'About Squeak...' translated
+ at: World center]
+ ifFalse:
+ [| m |
+ m := SystemReporter open.
+ m label: 'About Squeak...' translated.
+ m setConstrainedPosition: World center - (m bounds extent / 2)
+ hangOut: false]!
- UserDialogBoxMorph
- inform: Smalltalk systemInformationString withCRs
- title: 'About Squeak:'
- at: World center.
- !