A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/Tools-ct.1017.mcz==================== Summary ====================
Name: Tools-ct.1017
Author: ct
Time: 4 November 2020, 7:39:49.302134 pm
UUID: 71fa1576-9511-7743-ab87-a1c4048cda0d
Ancestors: Tools-mt.1015
Show number of truncated items in inspectors
=============== Diff against Tools-mt.1015 ===============
Item was changed:
----- Method: Inspector>>contentsForTruncationOf: (in category 'fields - truncation') -----
contentsForTruncationOf: truncatedKeys
+ ^ ('<{3} fields named {1} to {2} are not shown. {4} to inspect one of those fields or select "inspect element" from any field''s menu.>' translated asText
- ^ ('<Fields named {1} to {2} are not shown. {3} to inspect one of those fields or select "inspect element" from any field''s menu.>' translated asText
addAttribute: TextEmphasis italic;
format: {
truncatedKeys first storeString.
+ truncatedKeys last storeString.
+ truncatedKeys size.
- truncatedKeys last storeString.
'Click here' translated asText
addAttribute: (PluggableTextAttribute evalBlock: [self inspectOneOf: truncatedKeys]);
+ yourself })!
- yourself. })!