[squeak-dev] The Trunk: Morphic-kfr.1456.mcz

commits at source.squeak.org commits at source.squeak.org
Thu Jun 28 18:57:52 UTC 2018


Karl Ramberg uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-kfr.1456.mcz

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

Name: Morphic-kfr.1456
Author: kfr
Time: 28 June 2018, 8:57:35.342158 pm
UUID: 691cd470-c027-4f45-93ce-9c860b38d729
Ancestors: Morphic-tpr.1455

DialogWindow should have center layout

=============== Diff against Morphic-tpr.1455 ===============

Item was changed:
  ----- Method: DialogWindow>>createBody (in category 'initialization') -----
  createBody
  
  	| body |
  	body := Morph new
  		name: 'Body';
  		changeTableLayout;
  		hResizing: #shrinkWrap;
  		vResizing: #shrinkWrap;
  		listDirection: #topToBottom;
+ 		cellPositioning: #topCenter;
- 		cellPositioning: #leftCenter;
  		layoutInset: (10 at 5 corner: 10 at 10);
  		cellInset: 5;
  		color: Color transparent;
  		yourself.
  	body addAllMorphs: {self createMessage: ''. self createPane. self createButtonRow. self createFilter}.
  	self addMorphBack: body.!



More information about the Squeak-dev mailing list