Andreas Raab uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-ar.61.mcz==================== Summary ====================
Name: ToolBuilder-Morphic-ar.61
Author: ar
Time: 5 May 2010, 8:53:09.963 am
UUID: 42c6e9ee-77b1-774d-8f9b-3a18d21357b1
Ancestors: ToolBuilder-Morphic-dtl.60
Do not enable syntax highlighting by default when using UIManager>>edit:label:accept: since this may be used for non-code editing requests.
=============== Diff against ToolBuilder-Morphic-dtl.60 ===============
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 ].
window model
+ shouldStyle: false;
acceptContents: aText;
acceptAction: anAction.
^window.!