The Inbox: System-tonyg.1001.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Inbox: System-tonyg.1001.mcz

commits-2
A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/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]!