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

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

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

Name: Morphic-mt.945
Author: mt
Time: 28 April 2015, 12:14:36.185 pm
UUID: 7ef290b1-0ad5-cb4a-9031-6ab5a327b44a
Ancestors: Morphic-mt.944

Do not use soft line wrap property for *all* pluggable text fields in the system. Tool builder will take care of reading that property.

=============== Diff against Morphic-mt.944 ===============

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 setSelection: self getSelection.
- self wrapFlag: self class softLineWrap.!