'From Squeak3.6 of ''6 October 2003'' [latest update: #5424] on 16 November 2003 at 1:58:39 am'! !SystemWindow methodsFor: 'initialization' stamp: 'sumim 11/16/2003 01:56'! openInWorld: aWorld "This msg and its callees result in the window being activeOnlyOnTop" | recomBounds | self bounds: (RealEstateAgent initialFrameFor: self world: aWorld). TopWindow ifNotNil: [ recomBounds _ self bounds. self position: TopWindow position + (24@24). (Display boundingBox containsPoint: self bottomRight) ifFalse: [self bounds: recomBounds]]. ^self openAsIsIn: aWorld! !