Andreas Raab uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-ar.85.mcz==================== Summary ====================
Name: MorphicExtras-ar.85
Author: ar
Time: 7 April 2010, 8:32:52.797 pm
UUID: 313dd731-c558-a349-8dc2-b9475becfce4
Ancestors: MorphicExtras-ar.84
Add test from
http://bugs.squeak.org/view.php?id=6780=============== Diff against MorphicExtras-ar.84 ===============
Item was added:
+ ----- Method: ObjectsTool>>showAll (in category 'search') -----
+ showAll
+ "Put items matching the search string into my lower pane.
+ showAll is for testing that all bin parts can be displayed.
+ Currently it has no callers of use other than the test."
+ | quads |
+ self partsBin removeAllMorphs.
+ self modeSymbol: nil .
+ Cursor wait
+ showWhile: [quads := OrderedCollection new.
+ Morph withAllSubclasses
+ do: [:aClass | aClass
+ addPartsDescriptorQuadsTo: quads
+ if: [:info | true ]].
+ self installQuads: quads fromButton: nil]!