'From Squeak3.6beta of ''4 July 2003'' [latest update: #5352] on 20 July 2003 at 8:38:48 pm'! "Change Set: WorldsOfSqueakWin-dgd Date: 20 July 2003 Author: Diego Gomez Deck and Doug Way - Remove the old outer window for 'The Worlds of Squeak' Projectview, and replace with a newly created window to match the others. (new window code added by Doug Way) " (SystemWindow windowsIn: World satisfying: [:each | each label = 'The Worlds of Squeak']) do: [:oldWindow | | content newWindow | oldWindow activate. content := oldWindow paneMorphs first. newWindow _ SystemWindow labelled: 'The Worlds of Squeak'. newWindow addMorph: content fullFrame: (LayoutFrame fractions: (0@0 corner: 1@1)). newWindow model: oldWindow model. newWindow paneColor: oldWindow paneColor. newWindow openInWorldExtent: oldWindow extent. newWindow position: oldWindow position. oldWindow model: nil. oldWindow delete.]. !