The Trunk: Tools-dtl.767.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-dtl.767.mcz

commits-2
David T. Lewis uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-dtl.767.mcz

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

Name: Tools-dtl.767
Author: dtl
Time: 16 September 2017, 8:52:24.336542 pm
UUID: a4cda952-0952-4ecf-a895-0fa604787356
Ancestors: Tools-cbc.766

For ObjectExplorer>>copyValue, use #asStringOrText to ensure that the value can be copied to the clipboard.

=============== Diff against Tools-cbc.766 ===============

Item was changed:
  ----- Method: ObjectExplorer>>copyValue (in category 'menus - actions') -----
  copyValue
  "Copy the name of the current variable, so the user can paste it into the window below and work with is."
 
+ Clipboard clipboardText: self currentSelection value asStringOrText. !
- Clipboard clipboardText: self currentSelection value. !