A new version of System was added to project The Inbox:
http://source.squeak.org/inbox/System-cbr.374.mcz==================== Summary ====================
Name: System-cbr.374
Author: cbr
Time: 10 September 2010, 5:33:58.806 pm
UUID: 93d9dfde-339b-48e6-80b8-3cd6bac5d221
Ancestors: System-ar.373
Nicer default fonts for buttons, flaps, and balloon help.
=============== Diff against System-ar.373 ===============
Item was changed:
----- Method: Preferences class>>restoreDefaultFonts (in category 'fonts') -----
restoreDefaultFonts
"Since this is called from menus, we can take the opportunity to prompt for missing font styles."
"
Preferences restoreDefaultFonts
"
self setDefaultFonts: #(
(setSystemFontTo: 'Bitmap DejaVu Sans' 9)
(setListFontTo: 'Bitmap DejaVu Sans' 9)
+ (setFlapsFontTo: 'Bitmap DejaVu Sans Bold' 9)
- (setFlapsFontTo: Accushi 12)
(setEToysFontTo: BitstreamVeraSansBold 9)
(setPaintBoxButtonFontTo: BitstreamVeraSansBold 9)
(setMenuFontTo: 'Bitmap DejaVu Sans' 9)
(setWindowTitleFontTo: 'Bitmap DejaVu Sans Bold' 9)
+ (setBalloonHelpFontTo: 'Bitmap DejaVu Sans' 7)
- (setBalloonHelpFontTo: Accujen 9)
(setCodeFontTo: 'Bitmap DejaVu Sans' 9)
+ (setButtonFontTo: 'Bitmap DejaVu Sans' 7)
- (setButtonFontTo: BitstreamVeraSansMono 9)
)
!