[squeak-dev] The Inbox: Morphic-ct.2040.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Sep 13 07:16:48 UTC 2022


Christoph Thiede uploaded a new version of Morphic to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.2040.mcz

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

Name: Morphic-ct.2040
Author: ct
Time: 13 September 2022, 9:16:44.916523 am
UUID: 1d78d473-ef93-d741-877f-90e485d21356
Ancestors: Morphic-ct.2039

Improves high-dpi support for AlignmentMorph. While technically consistent, this would make the high-dpi mode look less clean and minimalistic for some widgets (such as menus), so we want this change indeed?

=============== Diff against Morphic-ct.2039 ===============

Item was changed:
  ----- Method: AlignmentMorph>>initialize (in category 'initialization') -----
  initialize
  	"initialize the state of the receiver"
  	super initialize.
  	""
  	self layoutPolicy: TableLayout new;
  	 listDirection: #leftToRight;
  	 wrapCentering: #topLeft;
  	 hResizing: #spaceFill;
  	 vResizing: #spaceFill;
+ 	 layoutInset: 2 px;
- 	 layoutInset: 2;
  	 rubberBandCells: true!



More information about the Squeak-dev mailing list