The Trunk: Morphic-mt.832.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.832.mcz

commits-2
Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.832.mcz

==================== Summary ====================

Name: Morphic-mt.832
Author: mt
Time: 7 April 2015, 11:46:43.031 am
UUID: becc62cc-9fc5-5347-b467-aacee456748d
Ancestors: Morphic-mt.831

Fixed pluggable text morphs to not scroll more than just its text morphs.

=============== Diff against Morphic-mt.831 ===============

Item was added:
+ ----- Method: PluggableTextMorph>>hExtraScrollRange (in category 'scrolling') -----
+ hExtraScrollRange
+
+ ^ 0!

Item was removed:
- ----- Method: PluggableTextMorph>>hUnadjustedScrollRange (in category 'scrolling') -----
- hUnadjustedScrollRange
- "Return the width of the widest item in the list"
-
- textMorph ifNil: [ ^0 ].
- textMorph isWrapped ifTrue:[ ^0 ].
-
- ^super hUnadjustedScrollRange
- !

Item was added:
+ ----- Method: PluggableTextMorph>>vExtraScrollRange (in category 'scrolling') -----
+ vExtraScrollRange
+
+ ^ 0!