'From Squeak3.7gamma of ''17 July 2004'' [latest update: #5978] on 31 August 2004 at 8:54:23 pm'! "Change Set: FixProjView Date: 31 August 2004 Author: Andreas Raab Fix project-view-in-window-offset bug."! !ProjectViewMorph class methodsFor: 'project window creation' stamp: 'ar 8/31/2004 20:53'! newProjectViewInAWindowFor: aProject "Return an instance of me on a new Morphic project (in a SystemWindow)." | window proj | proj := self on: aProject. window _ (SystemWindow labelled: aProject name) model: aProject. window addMorph: proj frame: (0@0 corner: 1.0@1.0). proj borderWidth: 0. ^ window ! !