The Trunk: Morphic-mt.876.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Morphic-mt.876.mcz

commits-2
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.
- !