[squeak-dev] The Inbox: Tools-ct.881.mcz

commits at source.squeak.org commits at source.squeak.org
Wed Sep 4 19:22:40 UTC 2019


A new version of Tools was added to project The Inbox:
http://source.squeak.org/inbox/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-ct.878 ===============

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: nil shouldStyle: true!

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

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



More information about the Squeak-dev mailing list