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

commits-2
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!