<div dir="ltr"><div dir="ltr">Hello,<div><br></div><div>I noticed that the editTextSelector is not sent to the model of a TextMorphForEditView (Morphic's PluggableInputField) when you press backspace or punctuation.</div><div><br></div><div>The cause is obvious in TextMorphForEditView>>keyStroke:</div><div><br></div><div><div><span style="white-space:pre">      </span>"Make a cheap check and guess editing. (Alternative would be to copy the old contents and then compare them against the new ones. Maybe add a better hook in the TextEditor."</div><div><span style="white-space:pre">       </span>(self readOnly not and: [evt keyCharacter isAlphaNumeric or: [evt keyCharacter isSeparator]])</div><div><span style="white-space:pre">         </span>ifTrue: [view textEdited: self contents].</div></div><div><br></div><div>Is there a rationale behind only including alphanumeric and separator characters, but not punctuation or the obvious editing stroke of pressing backspace? Should they rather be included even if it means some more checks of the Character?</div><div><br></div><div>Also note that there is no #isPunctuation (or similar) in Character and #isSpecial does not include the full stop.</div><div><br></div><div>I wanted to synchronize the text of one input field with that of another (with a transformation in between) in case the latter of the two was not manually modified by the user. Especially the lack of backspace propagation impacts the user experience in this case.</div><div><br></div><div>Kind regards,</div><div>Jakob</div></div></div>