The Trunk: ToolBuilder-Morphic-mt.111.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-mt.111.mcz

commits-2
Marcel Taeumel uploaded a new version of ToolBuilder-Morphic to project The Trunk:
http://source.squeak.org/trunk/ToolBuilder-Morphic-mt.111.mcz

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

Name: ToolBuilder-Morphic-mt.111
Author: mt
Time: 1 April 2015, 4:34:47.411 pm
UUID: df7f741e-5af0-c14f-b019-03ed2d822fc9
Ancestors: ToolBuilder-Morphic-mt.110

Fixed should background-styling to update text morph runs only from within the morphic UI process.

=============== Diff against ToolBuilder-Morphic-mt.110 ===============

Item was changed:
  ----- Method: PluggableTextMorphPlus>>stylerStyledInBackground: (in category 'styling') -----
  stylerStyledInBackground: styledCopyOfText
  "Sent after the styler completed styling of the text"
 
  "It is possible that the text string has changed since the styling began. Disregard the styles if styledCopyOfText's string differs with the current textMorph contents string"
+ Project current addDeferredUIMessage: [
+ textMorph contents string = styledCopyOfText string
+ ifTrue: [self stylerStyled: styledCopyOfText]].!
- textMorph contents string = styledCopyOfText string
- ifTrue: [self stylerStyled: styledCopyOfText]!