Squeak
  links to this page:    
View this PageEdit this PageUploads to this PageHistory of this PageTop of the SwikiRecent ChangesSearch the SwikiHelp Guide
How to resize project thumbnail windows
Last updated at 3:59 pm UTC on 4 December 2021
How to make all Morphic project view thumbnails to have the same size

 (Project current world 
       submorphsSatisfying:[:any| any isKindOf: SystemWindow]) do: 
            [:ea| (ea model isKindOf: MorphicProject) 
                                    ifTrue:[ ea extent: 180@120]]

The check for SystemWindow depends on a preference for ProjectViewMorph, see note at ProjectViewMorph.

Screen Shot 2017-05-18 at 9.02 AM.png