[squeak-dev] The Inbox: Morphic-kfr.1619.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Feb 7 23:32:16 UTC 2020


A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/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!



More information about the Squeak-dev mailing list