'From etoys2.1 of 26 July 2007 [latest update: #1585] on 3 September 2007 at 12:48:40 pm'! "Change Set: moreRotationFixes-sw Date: 3 September 2007 Author: Scott Wallace Fixes two more bugs arising from morph rotation: (1) The send-to-back menu item in the halo menu did not work if the sendee was rotated. (2) The menu title of a rotated morph sometimes did not reflect the object's name (if the object had beeen renamed while rotated.)"! !Morph methodsFor: 'menus' stamp: 'sw 9/3/2007 12:45'! addTitleForHaloMenu: aMenu "Add the menu title for the receiver's halo menu" aMenu addTitle: (self topRendererOrSelf externalName truncateTo: 32)! ! !Morph methodsFor: 'submorphs-add/remove' stamp: 'sw 9/3/2007 12:41'! goBehind "Move the receiver to bottom z-order." | topRend | topRend := self topRendererOrSelf. topRend owner ifNotNilDo: [:own | own addMorphNearBack: topRend] ! !