'From Squeak3.0 of 4 February 2001 [latest update: #3414] on 6 February 2001 at 12:28:17 pm'! "Change Set: WindowLayoutQuickFix Date: 6 February 2001 Author: Jesse Welton Quick fix for the niggling little problem with close & collapse buttons being misplaced: They were the wrong size."! !SystemWindow methodsFor: 'initialization' stamp: 'JW 2/6/2001 12:24'! fixOldButtonExtents "Set close and collapse buttons to the right size." collapseBox ifNotNil: [collapseBox extent: 14@14]. closeBox ifNotNil: [closeBox extent: 14@14]. ! ! "Postscript: Resize buttons on the existing windows." SystemWindow allInstances do: [:w | w fixOldButtonExtents]. SystemWindow removeSelector: #fixOldButtonExtents.!