A new version of ToolBuilder-Morphic was added to project The Inbox:
http://source.squeak.org/inbox/ToolBuilder-Morphic-kfr.155.mcz==================== Summary ====================
Name: ToolBuilder-Morphic-kfr.155
Author: kfr
Time: 6 January 2016, 8:56:21.394914 pm
UUID: ee2e96ee-e6c0-4b84-b608-a206f08f50f3
Ancestors: ToolBuilder-Morphic-cmm.154
Turn syntax highlighting on or off according to preference
=============== Diff against ToolBuilder-Morphic-cmm.154 ===============
Item was changed:
----- Method: PluggableTextMorphPlus>>okToStyle (in category 'testing') -----
okToStyle
+ ^ styler
- ^ styler
ifNil:[false]
+ ifNotNil: [:s | s class syntaxHighlighting
+ ifTrue:[model aboutToStyle: s]
+ ifFalse:[false]]!
- ifNotNil: [:s | model aboutToStyle: s]!