Levente Uzonyi uploaded a new version of System to project The Trunk:
http://source.squeak.org/trunk/System-ul.392.mcz==================== Summary ====================
Name: System-ul.392
Author: ul
Time: 12 November 2010, 3:51:03.799 am
UUID: f6d9233d-6265-104d-91a8-28aca83d0206
Ancestors: System-ul.391
- use Bitmap DejaVu Sans 7pt for button font, because it's much more readable than the blurry BitStreamVeraSansMono. If you find it too small, then consider adding the 8pt version to Squeak. 9pt is too big.
=============== Diff against System-ul.391 ===============
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: Accushi 12)
(setEToysFontTo: BitstreamVeraSansBold 9)
(setPaintBoxButtonFontTo: BitstreamVeraSansBold 9)
(setMenuFontTo: 'Bitmap DejaVu Sans' 9)
(setWindowTitleFontTo: 'Bitmap DejaVu Sans Bold' 9)
(setBalloonHelpFontTo: Accujen 9)
(setCodeFontTo: 'Bitmap DejaVu Sans' 9)
+ (setButtonFontTo: 'Bitmap DejaVu Sans' 7)
- (setButtonFontTo: BitstreamVeraSansMono 9)
)
!
Item was changed:
+ (PackageInfo named: 'System') postscript: 'Preferences restoreDefaultFonts'!
- (PackageInfo named: 'System') postscript: 'Preferences restoreDefaultFonts.'!