'From Squeak3.2gamma of 15 January 2002 [latest update: #4857] on 30 September 2002 at 11:41:20 pm'! "Change Set: thumbHolderFix-bf Date: 30 September 2002 Author: Bert Freudenberg Published as 4980thumbHolderFix-bf.cs to 3.3a. Makes getValueAtCursor and getGraphicAtCursor for a Holder showing thumbnails return the represented morph. Before, the thumbnail itself was returned which caused the animation to be played at thumbnail size."! !PasteUpMorph methodsFor: 'cursor' stamp: 'bf 9/30/2002 23:37'! valueAtCursor "Answer the submorph of mine indexed by the value of my 'cursor' slot" submorphs isEmpty ifTrue: [^ self presenter standardPlayer costume]. ^ (submorphs at: ((cursor truncated max: 1) min: submorphs size)) morphRepresented! !