The Trunk: Tools-eem.765.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Tools-eem.765.mcz

commits-2
Eliot Miranda uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-eem.765.mcz

==================== Summary ====================

Name: Tools-eem.765
Author: eem
Time: 12 July 2017, 5:09:06.400984 pm
UUID: 7859773d-1bc1-4955-920b-121cac1570cd
Ancestors: Tools-pre.764

Fix bug in DictionaryInspector when browsing references but selecting an inst var of the receiver.

=============== Diff against Tools-pre.764 ===============

Item was changed:
  ----- Method: DictionaryInspector>>selectionReferences (in category 'menu') -----
  selectionReferences
  "Create a browser on all references to the association of the current selection."
 
+ self selectionIndex <= self numberOfFixedFields ifTrue: [^ self changed: #flash].
- self selectionIndex = 0 ifTrue: [^ self changed: #flash].
  object class == MethodDictionary ifTrue: [^ self changed: #flash].
+ self systemNavigation browseAllCallsOn: (object associationAt: (keyArray at: selectionIndex - self numberOfFixedFields))!
- self systemNavigation browseAllCallsOn: (object associationAt: (keyArray at: selectionIndex  - self numberOfFixedFields)).
- !