[squeak-dev] The Trunk: Morphic-ct.2035.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Aug 25 10:40:50 UTC 2022


Christoph Thiede uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ct.2035.mcz

==================== Summary ====================

Name: Morphic-ct.2035
Author: ct
Time: 25 August 2022, 12:40:45.409239 pm
UUID: 4f0a792b-9dac-e747-8026-688f782d1540
Ancestors: Morphic-ct.2034

ProjectViewMorph: Adds missing #refreshWindowColor to so that windows look even nice without making them the key window.

=============== Diff against Morphic-ct.2034 ===============

Item was changed:
  ----- Method: ProjectViewMorph class>>newProjectViewInAWindowFor: (in category 'project window creation') -----
  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 extent: proj extent.
  	window
  		addMorph: proj
  		frame: (0 at 0 corner: 1.0 at 1.0).
  	proj borderWidth: 0.
+ 	window refreshWindowColor.
  	^ window
  !



More information about the Squeak-dev mailing list