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

commits at source.squeak.org commits at source.squeak.org
Thu Apr 9 15:27:56 UTC 2015


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

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

Name: Morphic-mt.850
Author: mt
Time: 9 April 2015, 5:27:19.129 pm
UUID: 33830fe6-93af-9e40-9fbc-4ab9b925b71d
Ancestors: Morphic-mt.849

Fixed scroll pane (i.e. text boxes) creation when preference "always show H/V scrollbar" was enabled.

=============== Diff against Morphic-mt.849 ===============

Item was changed:
  ----- Method: PluggableTextMorph>>scrollDeltaHeight (in category 'geometry') -----
  scrollDeltaHeight
  	"Return the increment in pixels which this pane should be scrolled."
+ 	^ textMorph ifNil: [super scrollDeltaHeight] ifNotNil: [:tm | tm defaultLineHeight]
- 	^ scroller firstSubmorph defaultLineHeight
  !

Item was changed:
  ----- Method: SimpleHierarchicalListMorph>>scrollDeltaHeight (in category 'geometry') -----
  scrollDeltaHeight
+ 	^ scroller hasSubmorphs
+ 		ifTrue: [scroller firstSubmorph height]
+ 		ifFalse: [super scrollDeltaHeight]!
- 	^ scroller firstSubmorph height!



More information about the Squeak-dev mailing list