The Trunk: Morphic-kfr.1456.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-kfr.1456.mcz

commits-2
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@5 corner: 10@10);
  cellInset: 5;
  color: Color transparent;
  yourself.
  body addAllMorphs: {self createMessage: ''. self createPane. self createButtonRow. self createFilter}.
  self addMorphBack: body.!