[Pkg] The Trunk: Morphic-mt.1444.mcz

commits at source.squeak.org commits at source.squeak.org
Thu May 31 07:28:33 UTC 2018


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

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

Name: Morphic-mt.1444
Author: mt
Time: 31 May 2018, 9:28:12.813323 am
UUID: d41ef171-b992-1a4e-b2d5-009f0e9e3134
Ancestors: Morphic-cmm.1443

Reverts the change from Morphic-cmm.1443 about borderStyle to make test04InnerBounds in BorderedMorphTests green again.

=============== Diff against Morphic-cmm.1443 ===============

Item was changed:
  ----- Method: Morph>>borderStyle: (in category 'accessing') -----
  borderStyle: aBorderStyle
+ 
  	aBorderStyle = self borderStyle ifTrue: [^ self].
+ 	
  	"If we cannot draw the new border, accept at least its color and width."
  	((self canDrawBorder: aBorderStyle) or: [aBorderStyle isNil])
  		ifTrue: [self setProperty: #borderStyle toValue: aBorderStyle]
  		ifFalse: [
  			self borderStyle
  				width: aBorderStyle width;
  				baseColor: aBorderStyle baseColor].
+ 
  	self borderStyle trackColorFrom: self.
+ 
+ 	self
+ 		layoutChanged;
+ 		changed.!
- 	self isInWorld ifTrue:
- 		[ self
- 			layoutChanged;
- 			changed ]!



More information about the Packages mailing list