'From etoys3.0 of 24 February 2008 [latest update: #2046] on 30 June 2008 at 3:44:55 pm'! "Change Set: sqLandPangoFlag-yo Date: 30 June 2008 Author: Yoshiki Ohshima For Squeakland OLPC 2008, we don't use Pango. When switching the language, or bringing the image from one platform to another, only time it changes the usePangoRenderer flag is when the new language requires it, the old value for it is false, and the renderer is available."! !LanguageEnvironment class methodsFor: 'private' stamp: 'yo 6/30/2008 14:49'! setUsePangoFlag | new old | old := Preferences usePangoRenderer. new := RomePluginCanvas pangoIsAvailable and: [Locale current languageEnvironment class usePangoRenderer]. (old not and: [new]) ifTrue: [ Preferences setPreference: #usePangoRenderer toValue: new. TextMorph usePango: new. ].! ! !Preferences class methodsFor: 'themes' stamp: 'yo 6/30/2008 14:09'! chicago "A theme for Squeakland project" "Preferences chicago" self cambridge. self setPreferencesFrom: #( (biggerHandles false) (biggerCursors false) "(magicHalos true)" (sugarNavigator true) (swapControlAndAltKeys false) (unlimitedPaintArea true) (useArtificialSweetenerBar true) (useBiggerPaintingBox false) (usePopUpArrows false) (usePangoRenderer false) "(updateFromServerAtStartup false)" ).! !