'From Squeak3.1alpha of 28 February 2001 [latest update: #4109] on 1 June 2001 at 9:45:28 am'! "Change Set: listFont-sw Date: 1 June 2001 Author: Scott Wallace Allows PluggableListMorphs to have their font size and styles changed via menu command."! !PluggableListMorph methodsFor: 'menus' stamp: 'sw 6/1/2001 09:44'! addAddHandMenuItemsForHalo: aMenu hand: aHandMorph "Add halo menu items to be handled by the invoking hand. The halo menu is invoked by clicking on the menu-handle of the receiver's halo." super addAddHandMenuItemsForHalo: aMenu hand: aHandMorph. aMenu addLine. aMenu add: 'list font...' target: self action: #setListFont. aMenu addLine ! ! !PluggableListMorph methodsFor: 'menus' stamp: 'sw 6/1/2001 09:43'! setListFont "set the font for the list" Preferences chooseFontWithPrompt: 'choose the font for this list' andSendTo: self withSelector: #font:! !