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

commits at source.squeak.org commits at source.squeak.org
Tue Apr 7 09:50:31 UTC 2015


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].
- !



More information about the Squeak-dev mailing list