Marcel Taeumel uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-mt.238.mcz==================== Summary ====================
Name: ToolBuilder-Morphic-mt.238
Author: mt
Time: 19 August 2019, 5:02:51.951665 pm
UUID: 69801a05-4a22-db48-bf08-3c5a4495a507
Ancestors: ToolBuilder-Morphic-ct.237
Fix comments.
=============== Diff against ToolBuilder-Morphic-ct.237 ===============
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. By default, don't style in such edit: requests."
+
- "Open an editor on the given string/text"
^ self edit: aText label: labelString shouldStyle: false accept: anAction!
Item was changed:
----- Method: MorphicUIManager>>edit:label:shouldStyle:accept: (in category 'ui requests') -----
edit: aText label: labelString shouldStyle: aBoolean 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: aBoolean;
acceptContents: aText;
acceptAction: anAction.
^ window!