[squeak-dev] The Trunk: Morphic-eem.726.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Jun 27 22:48:04 UTC 2014


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.
- !



More information about the Squeak-dev mailing list