[squeak-dev] The Trunk: Morphic-mt.1725.mcz

commits at source.squeak.org commits at source.squeak.org
Sat Feb 20 11:59:37 UTC 2021


Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1725.mcz

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

Name: Morphic-mt.1725
Author: mt
Time: 20 February 2021, 12:59:31.409242 pm
UUID: 6dbc93ae-acaf-5745-9d5f-8c46317b4f76
Ancestors: Morphic-mt.1724

Fixes minor glitch when enabling world grid.

=============== Diff against Morphic-mt.1724 ===============

Item was changed:
  ----- Method: MorphicProject class>>worldGridEnabled: (in category 'preferences') -----
  worldGridEnabled: aBooleanOrNil
  
  	(aBooleanOrNil ifNil: [false]) = self current world griddingOn
  		ifFalse: [self current world griddingOnOff].
  
+ 	"Auto-configure origin and modulus to match world properties."
+ 	self worldGridOrigin: nil.
+ 	self worldGridModulus: nil.
+ 
  	"Snap to grid when dragging something."
  	self current world griddingOn
  		ifTrue: [self current world firstHand turnOnGridding]
  		ifFalse: [self current world firstHand turnOffGridding].!



More information about the Squeak-dev mailing list