Matthew Fulmer uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mtf.495.mcz==================== Summary ====================
Name: Morphic-mtf.495
Author: mtf
Time: 13 December 2010, 11:16:05.564 am
UUID: 49a8bcd6-f09a-48a6-8dd7-5dbe9dd99817
Ancestors: Morphic-mtf.491, Morphic-mtf.493
merged two changes needed by Tweak, imported from cobalt:
- Allow TextStyles to specify a right-click action.
- Don't draw transparent FillStyles
=============== Diff against Morphic-mtf.493 ===============
Item was changed:
----- Method: TextMorphForEditView>>mouseDown: (in category 'event handling') -----
mouseDown: event
+ event yellowButtonPressed ifTrue: [
+ (editor yellowButtonDown: event) ifTrue:[^self].
+ ^ editView yellowButtonActivity: event shiftPressed].
- event yellowButtonPressed ifTrue: [^ editView yellowButtonActivity: event shiftPressed].
^ super mouseDown: event
!