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

commits at source.squeak.org commits at source.squeak.org
Thu Mar 29 08:02:42 UTC 2018


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

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

Name: Morphic-mt.1404
Author: mt
Time: 29 March 2018, 10:02:19.017053 am
UUID: c6566b82-98cf-d247-9b7a-9792b583499d
Ancestors: Morphic-mt.1403

Fix minor regression from last commit. Sorry.

=============== Diff against Morphic-mt.1403 ===============

Item was changed:
  ----- Method: ScrollPane>>drawOverlayOn: (in category 'drawing') -----
  drawOverlayOn: aCanvas
  	"Draw my border OVER my submorphs because the scrollbars overlap."
  	
- 	self borderStyle width = 0 ifTrue: [^ self].
- 	
  	self wantsRoundedCorners
  		ifTrue: [aCanvas frameRoundRect: self bounds radius: self cornerRadius width: self borderStyle width color: self borderStyle color]
+ 		ifFalse: [aCanvas frameRectangle: self bounds width: self borderStyle width color: self borderStyle color].
+ 		
+ 	super drawOverlayOn: aCanvas.!
- 		ifFalse: [aCanvas frameRectangle: self bounds width: self borderStyle width color: self borderStyle color].!



More information about the Packages mailing list