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

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

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

Name: Morphic-mt.872
Author: mt
Time: 14 April 2015, 7:11:42.968 pm
UUID: 9805bd03-c0bd-e14a-9898-0501f7b9d66e
Ancestors: Morphic-mt.871

A fix for small scroll bars. Lower the min extent to 4@8 or 8@4 to support smaller fonts.

=============== Diff against Morphic-mt.871 ===============

Item was changed:
  ----- Method: ScrollBar>>extent: (in category 'geometry') -----
  extent: p
  p x > p y
  ifTrue: [super
+ extent: (p max: 8 @ 4)]
- extent: (p max: 42 @ 8)]
  ifFalse: [super
+ extent: (p max: 4 @ 8)].
- extent: (p max: 8 @ 42)].
  !