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

commits at source.squeak.org commits at source.squeak.org
Wed Apr 15 15:14:48 UTC 2015


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

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

Name: Morphic-mt.876
Author: mt
Time: 15 April 2015, 5:14:11.717 pm
UUID: 73586279-e7df-c44a-b1bf-d8f3417aee0d
Ancestors: Morphic-mt.875

Pluggable text morph adornments now use the new #drawOverlayOn: interface.

=============== Diff against Morphic-mt.875 ===============

Item was added:
+ ----- Method: PluggableTextMorph>>drawOverlayOn: (in category 'drawing') -----
+ drawOverlayOn: aCanvas 
+ 	"Draw frame adornments on top of everything otherwise they will partially overlap with text selection which looks ugly."
+ 	
+ 	super drawOverlayOn: aCanvas. 
+ 	self drawFrameAdornmentsOn: aCanvas.
+ !

Item was removed:
- ----- Method: PluggableTextMorph>>fullDrawOn: (in category 'drawing') -----
- fullDrawOn: aCanvas 
- 	"Draw frame adornments on top of everything otherwise they will partially overlap with text selection which looks ugly."
- 	super fullDrawOn: aCanvas. 
- 	self drawFrameAdornmentsOn: aCanvas.
- !



More information about the Squeak-dev mailing list