Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1475.mcz==================== Summary ====================
Name: Morphic-mt.1475
Author: mt
Time: 9 January 2019, 9:07:30.156737 am
UUID: 6352e308-4692-4767-8878-ef59a46b3a55
Ancestors: Morphic-mt.1474
Clean-up and finish migration of resize grips.
=============== Diff against Morphic-mt.1474 ===============
Item was changed:
----- Method: BorderGripMorph>>showHandle (in category 'accessing') -----
showHandle
+ ^ showHandle ifNil: [self class drawEdgeResizeHandles]!
- ^ showHandle ifNil: [
- self flag: #migration. "mt: Can be simplified with a later update."
- (self class respondsTo: #drawEdgeResizeHandles)
- ifTrue: [self class drawEdgeResizeHandles]
- ifFalse: [false]]!
Item was removed:
- ----- Method: CornerGripMorph>>drawOn: (in category 'drawing') -----
- drawOn: aCanvas
-
- "self showHandle
- ifTrue: [
- bounds := self bounds.
- aCanvas
- translucentImage: self alphaHandle
- at: self topLeft
- sourceRect: (self handleOrigin + (1@1) extent: self extent)]"!