[Q] Browser class>>fullOnClass:

Mike Roberts mike at mjr104.co.uk
Sat Apr 26 14:08:00 UTC 2003


Hi,

as an example, if you perform 

Browser fullOnClass: Date

The label of the browser that pops up is just 'System Browser'.  When you click on a different class, say Month, the browser's label is 'System Browser: Month'.  Would it be better to have the class name in the label from the start?  This seems more consistent.

in Browser class>>fullOnClass: you could change the last line from:

Browser openBrowserView: (brow openEditString: nil)
		label: 'System Browser'

to:

Browser openBrowserView: (brow openEditString: nil)
	label: 'System Browser: ', aClass name

Does this seem ok?

Cheers

Mike



More information about the Squeak-dev mailing list