'From Squeak3.1alpha of 5 February 2001 [latest update: #3613] on 16 February 2001 at 8:56:06 am'! "Change Set: fewerReleases Date: 16 February 2001 Author: Bob Arning Removed a couple of senders of #releaseParagraph. The intent is to fix problems with entering text into flowed fields."! !TextMorph methodsFor: 'geometry' stamp: 'RAA 2/16/2001 08:14'! layoutChanged "self releaseParagraph." super layoutChanged! ! !TextMorph methodsFor: 'private' stamp: 'RAA 2/16/2001 08:15'! installEditor self flag: #bob. "I don't see any senders (16 Feb 2001)" "Install an editor for my paragraph. This constitutes 'hasFocus'." editor ifNotNil: [^ editor]. ^ self installEditorToReplace: nil! ! !TextMorph methodsFor: 'containment' stamp: 'RAA 2/16/2001 08:13'! ownerChanged super ownerChanged. "container ifNotNil: [self releaseParagraph]"! !