'From Squeakland 3.8.5976 of 25 August 2004 [latest update: #286] on 2 September 2004 at 3:40:16 pm'! "Change Set: BolderFonts-nk Date: 1 September 2004 Author: Ned Konz To be loaded after FontMenuFixes-nk. Changes two fonts from the default 286 settings: * etoys font is changed from Bitstream Vera Sans Mono 9 to Bitstream Vera Sans Bold 10 * window title font is changed from Bitstream Vera Sans 12 to Bitstream Vera Sans Bold 12. "! !Preferences class methodsFor: 'fonts' stamp: 'nk 9/1/2004 10:21'! restoreDefaultFonts "Since this is called from menus, we can take the opportunity to prompt for missing font styles." " Preferences restoreDefaultFonts " self setDefaultFonts: #( (setSystemFontTo: Accuny 10) (setListFontTo: Accuny 10) (setFlapsFontTo: Accushi 12) (setEToysFontTo: BitstreamVeraSansBold 9) (setMenuFontTo: Accuny 10) (setWindowTitleFontTo: BitstreamVeraSansBold 12) (setBalloonHelpFontTo: Accujen 9) (setCodeFontTo: Accuny 10) (setButtonFontTo: BitstreamVeraSansMono 9) ) ! ! "Postscript: " Preferences restoreDefaultFonts. !