The Inbox: Morphic-ct.1530.mcz

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

The Inbox: Morphic-ct.1530.mcz

commits-2
A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-ct.1530.mcz

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

Name: Morphic-ct.1530
Author: ct
Time: 20 September 2019, 8:32:50.756726 pm
UUID: 9f75febe-0f2e-1c4d-8322-a2647486ec38
Ancestors: Morphic-mt.1526

Align the formatting in a method comment ;)

=============== Diff against Morphic-mt.1526 ===============

Item was changed:
  ----- Method: Morph>>hResizing (in category 'layout-properties') -----
  hResizing
  "Layout specific. This property describes how the receiver should be resized with respect to its owner and its children. Possible values are:
  #rigid - do not resize the receiver
  #spaceFill - resize to fill owner's available space
+ #shrinkWrap - resize to fit children
- #shrinkWrap - resize to fit children
  "
  | props |
  props := self layoutProperties.
  ^props ifNil:[#rigid] ifNotNil:[props hResizing].!