Marcel Taeumel uploaded a new version of ST80 to project The Trunk:
http://source.squeak.org/trunk/ST80-mt.253.mcz==================== Summary ====================
Name: ST80-mt.253
Author: mt
Time: 27 April 2020, 10:10:03.42034 am
UUID: 4c5e810c-df68-3e46-b9cc-f84546547355
Ancestors: ST80-dtl.252
Remove explicit class reference and rely on #inspectorClass. Avoid message send to object-under-inspector to not discard references to proxies.
=============== Diff against ST80-dtl.252 ===============
Item was changed:
----- Method: FormInspectView class>>openOn:withLabel: (in category 'instance creation') -----
openOn: aFormDictionary withLabel: aLabel
"open a graphical dictionary in a window having the label aLabel.
aFormDictionary should be a dictionary containing as value a form."
+ ^ aFormDictionary inspectWithLabel: aLabel
- ^ DictionaryInspector
- openOn: aFormDictionary
- withLabel: aLabel
!
Item was changed:
----- Method: ParagraphEditor>>inspectIt (in category 'do-its') -----
inspectIt
+ self evaluateSelectionAndDo: [:result | ToolSet inspect: result].
- self evaluateSelectionAndDo: [:result | result inspect].
!