David T. Lewis uploaded a new version of MorphicExtras to project The Trunk:
http://source.squeak.org/trunk/MorphicExtras-dtl.71.mcz==================== Summary ====================
Name: MorphicExtras-dtl.71
Author: dtl
Time: 14 January 2010, 10:13:20.477 pm
UUID: 593b30f2-8028-45e6-b311-c8be832cf57e
Ancestors: MorphicExtras-ar.70
Mantis 7448: subscript error when bringing up graphical imports submenu
Fix provided by Ken G. Brown. Also fixed spelling error in balloon text, s/contian/contain/
=============== Diff against MorphicExtras-ar.70 ===============
Item was changed:
----- Method: GraphicalDictionaryMenu>>showMenu (in category 'menu commands') -----
showMenu
"Show the receiver's menu"
| aMenu |
aMenu := MenuMorph new defaultTarget: self.
aMenu title: 'Graphics Library'.
aMenu addStayUpItem.
aMenu addList: #(
('remove' removeEntry 'Remove this entry from the dictionary')
('rename' renameEntry 'Rename this entry')
('repaint' repaintEntry 'Edit the actual graphic for this entry' )
-
('hand me one' handMeOne 'Hand me a morph with this picture as its form')
('browse symbol references'
browseIconReferences 'Browse methods that refer to this icon''s name')
('browse string references'
+ browseStringIconReferences 'Browse methods that refer to string constants that contain this icon''s name')
- browseStringIconReferences'
- 'Browse methods that refer to string constants that contian this icon''s name)
('copy name' copyName 'Copy the name of this graphic to the clipboard')
-
('find...' findEntry 'Find an entry by name')
('find again' findAgain 'Find the next match for the keyword previously searched for')).
aMenu popUpInWorld
!