Patrick Rein uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-pre.1555.mcz==================== Summary ====================
Name: Morphic-pre.1555
Author: pre
Time: 4 October 2019, 1:18:53.167303 pm
UUID: 93a1b2f9-c214-5943-bafc-6b097138c4ff
Ancestors: Morphic-pre.1554
Removes text modification character set on TextMorphForEditView which became obsolete with the new #hasUserEdited solution
=============== Diff against Morphic-pre.1554 ===============
Item was changed:
TextMorph subclass: #TextMorphForEditView
instanceVariableNames: 'editView acceptOnCR'
+ classVariableNames: 'DraggableTextSelection'
- classVariableNames: 'DraggableTextSelection TextModificationCharacterSet'
poolDictionaries: ''
category: 'Morphic-Text Support'!
Item was removed:
- ----- Method: TextMorphForEditView class>>defaultTextModificationCharacterSet (in category 'constants') -----
- defaultTextModificationCharacterSet
-
- ^ (ByteCharacterSet newFrom: (((0 to: 30) collect: [:code | Character value: code]) difference: Character separators asArray , {Character backspace})) complement!
Item was removed:
- ----- Method: TextMorphForEditView class>>initialize (in category 'class initialization') -----
- initialize
-
- TextModificationCharacterSet := self defaultTextModificationCharacterSet!
Item was removed:
- ----- Method: TextMorphForEditView class>>textModificationCharacterSet (in category 'constants') -----
- textModificationCharacterSet
-
- ^ TextModificationCharacterSet!
Item was removed:
- ----- Method: TextMorphForEditView>>eventCharacterModifiesText: (in category 'private') -----
- eventCharacterModifiesText: aCharacter
-
- ^ self class textModificationCharacterSet includes: aCharacter!