The Trunk: Tools-ct.881.mcz

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

The Trunk: Tools-ct.881.mcz

commits-2
David T. Lewis uploaded a new version of Tools to project The Trunk:
http://source.squeak.org/trunk/Tools-ct.881.mcz

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

Name: Tools-ct.881
Author: ct
Time: 4 September 2019, 9:22:35.818698 pm
UUID: 8b3f75cd-2e4c-3649-b220-196e1d813c8b
Ancestors: Tools-ct.878

Refine behavior of #spawn: again

* Move implementation in StringHolder up to Model, in order to avoid error messages in other Models (such as MCTool, PreferenceBrowser etc.)
* Respect Workspace shouldStyle setting in SearchBar>>#spawn:
* In Workspace>>#spawn:, respect current styling mode

Thanks to mt!

=============== Diff against Tools-mt.877 ===============

Item was added:
+ ----- Method: Model>>spawn: (in category '*Tools') -----
+ spawn: contentsString
+
+ UIManager default edit: contentsString label: nil!

Item was changed:
  ----- Method: SearchBar>>spawn: (in category '*Tools') -----
  spawn: contentsString
 
+ UIManager default edit: contentsString label: nil shouldStyle: Workspace shouldStyle!
- UIManager default edit: contentsString label: 'Workspace'!

Item was removed:
- ----- Method: StringHolder>>spawn: (in category '*Tools') -----
- spawn: contentsString
-
- UIManager default edit: contentsString label: 'Workspace'
- !

Item was added:
+ ----- Method: Workspace>>spawn: (in category '*Tools') -----
+ spawn: contentsString
+
+ UIManager default edit: contentsString label: 'Workspace' shouldStyle: self shouldStyle!