The Trunk: Morphic-kfr.1619.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.1619.mcz

commits-2
Nicolas Cellier uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-kfr.1619.mcz

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

Name: Morphic-kfr.1619
Author: kfr
Time: 8 February 2020, 12:31:52.597512 am
UUID: 1af0398c-5036-0943-a1f4-0d73a4b01c08
Ancestors: Morphic-cmm.1618

Bug fix for spelling error of #spaceFill

=============== Diff against Morphic-cmm.1618 ===============

Item was changed:
  ----- Method: GradientEditor>>addButtonRow (in category 'initialization') -----
  addButtonRow
  | button button2 buttonRow button3 |
  buttonRow := RectangleMorph new borderWidth: 0;
  color: Color transparent;
  layoutPolicy: TableLayout new;
+ hResizing: #spaceFill;
- hResizing: #spaceFil;
  vResizing: #spaceFill;
  cellPositioning: #center;
  listCentering: #topLeft;
  listDirection: #LeftToRight;
  reverseTableCells: true;
  cellGap: 4.
 
  button := PluggableButtonMorph on: self
  getState: nil
  action: #addHandle
  label: #addColorButtonLabel.
  button hResizing: #spaceFill;
  vResizing: #spaceFill.
  buttonRow  addMorph: button.
 
  button2 := PluggableButtonMorph on: self
  getState: nil
  action: #deleteHandle
  label: #removeColorButtonLabel.
  button2 hResizing: #spaceFill;
  vResizing: #spaceFill.
  buttonRow addMorph: button2.
 
  button3 := PluggableButtonMorph on: self
  getState: nil
  action: #delete
  label: #closeButtonLabel.
  button3 hResizing: #spaceFill;
  vResizing: #spaceFill.
  buttonRow addMorph: button3.
 
  self addMorph: buttonRow!