'From Squeakland 3.8.5976 of 25 August 2004 [latest update: #267] on 28 August 2004 at 2:07:42 pm'! "Change Set: ParagraphEditorFix-dgd Date: 28 August 2004 Author: Diego Gomez Deck BUG: Pressing alt-o on a textmorph with keyboard focus cause a DNU. This changeset provides a fix for this bug. "! !ParagraphEditor methodsFor: 'menu messages' stamp: 'dgd 8/28/2004 13:59'! spawn "Create and schedule a message browser for the code of the model's selected message. Retain any edits that have not yet been accepted." | code | code _ paragraph text string. self cancel. model notNil ifTrue:[model spawn: code]. ! !