Nicolas Cellier uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-nice.731.mcz==================== Summary ====================
Name: Tools-nice.731
Author: nice
Time: 27 October 2016, 10:23:11.706603 pm
UUID: 31a047c7-9937-46f9-8710-1c38882f2a77
Ancestors: Tools-eem.730
Fix the field menu of Set inspector.
It's sent to a MenuMorph which DNU labels:.
Anyway, implementors of labels: do not expect alternate (selector action selector acton ...)
=============== Diff against Tools-eem.730 ===============
Item was changed:
----- Method: SetInspector>>mainFieldListMenu: (in category 'menu') -----
mainFieldListMenu: aMenu
+ ^ aMenu addList: #(
- ^ aMenu labels: #(
('inspect' inspectSelection)
('copy name' copyName)
('objects pointing to this value' objectReferencesToSelection)
('refresh view' update)
('remove' removeSelection)
-
('basic inspect' inspectBasic));
yourself
!