'From Squeak3.1alpha [latest update: #''Squeak3.1alpha'' of 28 February 2001 update 3932] on 19 April 2001 at 1:02:34 pm'! "Change Set: projectPrefFix-sw Date: 19 April 2001 Author: Scott Wallace Important!! Fixes a bug that broke things when you entered a pre-existing project after the Preferences junta."! !Project methodsFor: 'menu messages' stamp: 'sw 4/19/2001 12:58'! installProjectPreferences "Install the settings of all preferences presently held individually by projects in the receiver's projectPreferenceFlagDictionary" | localValue | Preferences allPreferenceObjects do: [:aPreference | aPreference localToProject ifTrue: [localValue _ self projectPreferenceFlagDictionary at: aPreference name ifAbsent: [nil]. localValue ifNotNil: [aPreference rawValue: localValue]]]! !