'From etoys3.0 of 24 February 2008 [latest update: #2027] on 19 June 2008 at 3:21:15 pm'! "Change Set: releaseKbd-kfr Date: 25 May 2008 Author: Karl Ramberg, Scott Wallace When hiding a morph make sure to release its keyboard focus. (sw tweak: make it work even if the morph to be hidden has been rotated...)"! !Player methodsFor: 'scripts-standard' stamp: 'sw 6/19/2008 15:18'! hide "Make the object be hidden, as opposed to visible" (ActiveHand keyboardFocus == self costume renderedMorph) ifTrue: [ActiveHand releaseKeyboardFocus]. self costume hide! !