Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.250.mcz==================== Summary ====================
Name: Morphic-ar.250
Author: ar
Time: 25 November 2009, 8:15:29 am
UUID: c9d89827-d0a7-9c46-987d-97665d814fc3
Ancestors: Morphic-dtl.249, Morphic-ar.249
Merging Morphic-dtl.249 and Morphic-ar.249.
=============== Diff against Morphic-dtl.249 ===============
Item was changed:
----- Method: TheWorldMainDockingBar>>newProject: (in category 'menu actions') -----
newProject: projectClass
+ "Create a new project of the given type"
+ | newProject |
+ "Allow the project to return nil from #new to indicate that it was canceled."
+ newProject := projectClass new ifNil:[^self].
+ ProjectViewMorph openOn: newProject.
+ newProject enter.!
-
- ProjectViewMorph openOn: projectClass new!