Eliot Miranda uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-eem.65.mcz==================== Summary ====================
Name: ToolBuilder-Morphic-eem.65
Author: eem
Time: 1 July 2010, 2:41:34.604 pm
UUID: 8e9c3431-ddbc-43f6-a77c-0fc2599cf789
Ancestors: ToolBuilder-Morphic-eem.64
Restore the setting of the label in edit:label:accept:
=============== Diff against ToolBuilder-Morphic-eem.64 ===============
Item was changed:
----- Method: MorphicUIManager>>edit:label:accept: (in category 'ui requests') -----
edit: aText label: labelString accept: anAction
"Open an editor on the given string/text"
| window |
window := Workspace open.
+ labelString ifNotNil: [ window setLabel: labelString ].
"By default, don't style in UIManager edit: requests"
window model
shouldStyle: false;
acceptAction: anAction;
acceptContents: aText.
^window.!