Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.833.mcz==================== Summary ====================
Name: Morphic-mt.833
Author: mt
Time: 7 April 2015, 11:49:47.002 am
UUID: 3226d2d9-f66c-d64a-a086-8184a81b09bc
Ancestors: Morphic-mt.832
Let the pluggable text morph *only* resize its text morph if autoFit is enabled. This supports real input fields.
=============== Diff against Morphic-mt.832 ===============
Item was changed:
----- Method: PluggableTextMorph>>resizeScroller (in category 'geometry') -----
resizeScroller
"Also needs to resize the text morph"
super resizeScroller.
+
+ textMorph ifNotNil: [:tm |
+ tm isAutoFit ifTrue: [textMorph extent: self scroller extent]].!
- textMorph ifNotNil:
- [textMorph extent: (self innerBounds width-6)@self height].
- !