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

commits at source.squeak.org commits at source.squeak.org
Tue Apr 14 17:12:18 UTC 2015


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 at 8 or 8 at 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)].
  	!



More information about the Squeak-dev mailing list