Comment #1 on issue 3514 by guillermopolito: Failing Test:
NewTextMorphTests.testAcceptContents
http://code.google.com/p/pharo/issues/detail?id=3514This is because TextEditor>>accept does:
accept
"Save the current text of the text being edited as the current acceptable
version for purposes of canceling. Allow my morph to take appropriate
action"
morph enableTextChange
ifTrue: [morph acceptContents]
and morph (a NewTextMorph) dnu #enableTextChange.
Does NewTextMorph has the capability of beign enabled or disabled? Shoud
it do only
morph acceptContents
?