A new version of ToolBuilder-Kernel was added to project The Inbox:
http://source.squeak.org/inbox/ToolBuilder-Kernel-ct.130.mcz==================== Summary ====================
Name: ToolBuilder-Kernel-ct.130
Author: ct
Time: 14 August 2019, 11:20:18.6744 pm
UUID: f71618e6-c508-a04a-abb4-27f3d7b5f982
Ancestors: ToolBuilder-Kernel-mt.129
UIManager: Add overloaded versions to set styling for editing
=============== Diff against ToolBuilder-Kernel-mt.129 ===============
Item was added:
+ ----- Method: UIManager>>edit:label:shouldStyle: (in category 'ui requests - text') -----
+ edit: aText label: labelString shouldStyle: aBoolean
+ "Open an editor on the given string/text"
+ ^self edit: aText label: labelString shouldStyle: aBoolean accept: nil!
Item was added:
+ ----- Method: UIManager>>edit:label:shouldStyle:accept: (in category 'ui requests - text') -----
+ edit: aText label: labelString shouldStyle: aBoolean accept: anAction
+ "Open an editor on the given string/text"
+ ^self edit: aText label: labelString accept: anAction!