'From Squeak3.1alpha of 7 February 2001 [latest update: #3611] on 16 February 2001 at 12:01:58 pm'! "Change Set: customHaloFix-sw Date: 16 February 2001 Author: Scott Wallace Reenfranchises the editCustomHalos feature in the preferences panel."! !PreferencesPanel methodsFor: 'halo pane' stamp: 'sw 2/16/2001 12:00'! addHaloControlsTo: controlPage "Add special controls relating to halo schemes to the page" | aButton | controlPage addTransparentSpacerOfSize: (0 @ 4). controlPage addMorphBack: self haloThemeRadioButtons. controlPage addTransparentSpacerOfSize: (0 @ 4). aButton _ SimpleButtonMorph new target: Preferences; color: Color transparent; actionSelector: #editCustomHalos; label: 'Edit custom halos'. controlPage addMorphBack: aButton. aButton setBalloonText: 'Click here to edit the method that defines the custom halos'. ! !