The Trunk: Morphic-mt.941.mcz

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

The Trunk: Morphic-mt.941.mcz

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

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

Name: Morphic-mt.941
Author: mt
Time: 27 April 2015, 4:26:53.705 pm
UUID: 88ba77bf-ed99-b548-8683-1a5dcc234182
Ancestors: Morphic-mt.940

Honor system-wide default for line wrapping when creating a text morph.

=============== Diff against Morphic-mt.940 ===============

Item was changed:
  ----- Method: PluggableTextMorph>>on:text:accept:readSelection:menu: (in category 'initialization') -----
  on: anObject text: getTextSel accept: setTextSel readSelection: getSelectionSel menu: getMenuSel
 
  self model: anObject.
  getTextSelector := getTextSel.
  setTextSelector := setTextSel.
  getSelectionSelector := getSelectionSel.
  getMenuSelector := getMenuSel.
  self borderWidth: 1.
  self setText: self getText.
+ self setSelection: self getSelection.
+ self wrapFlag: self class softLineWrap.!
- self setSelection: self getSelection.!