[squeak-dev] The Trunk: Morphic-mt.967.mcz

commits at source.squeak.org commits at source.squeak.org
Sun May 3 17:45:26 UTC 2015


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

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

Name: Morphic-mt.967
Author: mt
Time: 3 May 2015, 7:44:48.727 pm
UUID: 40874e5f-4add-e040-9814-7d102d3a66e5
Ancestors: Morphic-kfr.966

Small fixes in text morphs.

=============== Diff against Morphic-kfr.966 ===============

Item was changed:
  ----- Method: PluggableTextMorph>>selectAll (in category 'editor access') -----
  selectAll
+ 	"Tell my textMorph to select all"
- 	"Tell my textMorph's editor to select all"
  
+ 	textMorph selectAll.!
- 	textMorph editor selectAll!

Item was changed:
  ----- Method: TextMorph>>chooseEmphasis (in category 'editing') -----
  chooseEmphasis
+ 	self editor changeEmphasisOrAlignment.
- 	self editor changeEmphasis.
  	self updateFromParagraph!

Item was changed:
  ----- Method: TextMorph>>selectAll (in category 'accessing') -----
  selectAll
+ 
+ 	self selectionChanged.
+ 	self editor selectAll.
+ 	self selectionChanged.!
- 	self editor selectFrom: 1 to: text size!

Item was removed:
- ----- Method: TextMorphForEditView>>selectAll (in category 'miscellaneous') -----
- selectAll
- 	"Tell my editor to select all the text"
- 
- 	self editor selectAll!



More information about the Squeak-dev mailing list