Andreas Raab uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ar.352.mcz==================== Summary ====================
Name: System-ar.352
Author: ar
Time: 21 July 2010, 8:21:13.769 pm
UUID: 938d7c50-3c8a-4b4e-ad1a-cfb618b7df1f
Ancestors: System-ar.351
Only enable #narrowScrollBars when #tinyDisplay is set. Otherwise leave it at the regular size.
=============== Diff against System-ar.351 ===============
Item was changed:
----- Method: Preferences class>>displaySizeChanged (in category 'reacting to change') -----
displaySizeChanged
self flag: #todo.
"only change font on small-land image"
self smallLandFonts.
+ self tinyDisplay
+ ifTrue: [self enable: #scrollBarsNarrow]
+ ifFalse: [self disable: #scrollBarsNarrow].
+ self tinyDisplay
+ ifTrue:[self disable: #biggerHandles]
+ ifFalse:[self enable: #biggerHandles]!
- self bigDisplay
- ifTrue: [self disable: #scrollBarsNarrow]
- ifFalse: [self enable: #scrollBarsNarrow].
- self tinyDisplay ifTrue:[self disable: #biggerHandles] ifFalse:[self enable: #biggerHandles]!