[squeak-dev] The Trunk: System-tonyg.1001.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Feb 11 16:04:47 UTC 2018


Tony Garnock-Jones uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-tonyg.1001.mcz

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

Name: System-tonyg.1001
Author: tonyg
Time: 9 February 2018, 1:04:21.615446 pm
UUID: 761c7a6f-cd55-4660-a4f5-5baadcd7ab37
Ancestors: System-mt.1000

Attempting to set Preferences bigDisplay caused a DNU in Preferences class >> #displaySizeChanged invoking #smallLandFonts, which doesn't seem to be implemented anywhere in the stock image. I suspect this is code rot; this commit removes the call to Preferences class >> #smallLandFonts from #displaySizeChanged.

=============== Diff against System-mt.1000 ===============

Item was changed:
  ----- Method: Preferences class>>displaySizeChanged (in category 'updating - system') -----
  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]!



More information about the Squeak-dev mailing list