The Trunk: ToolBuilder-Morphic-eem.64.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: ToolBuilder-Morphic-eem.64.mcz

commits-2
Eliot Miranda uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-eem.64.mcz

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

Name: ToolBuilder-Morphic-eem.64
Author: eem
Time: 1 July 2010, 2:27:23.819 pm
UUID: b246d9d5-4f14-48de-8684-9637a009c58b
Ancestors: ToolBuilder-Morphic-eem.63

Must set a workspave not to style before its contents are set otherwise the text will be styled initially and lose its emphases.

=============== Diff against ToolBuilder-Morphic-eem.63 ===============

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.
+ "By default, don't style in UIManager edit: requests"
- labelString ifNotNil: [ window setLabel: labelString ].
  window model
  shouldStyle: false;
+ acceptAction: anAction;
+ acceptContents:  aText.
- acceptContents:  aText;
- acceptAction: anAction.
  ^window.!