Andreas Raab uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-ar.348.mcz==================== Summary ====================
Name: Morphic-ar.348
Author: ar
Time: 24 February 2010, 12:56:35.184 am
UUID: 282244c5-b8fb-394b-a8ae-ca90be45f1ef
Ancestors: Morphic-edc.347
Make sure that UserDialogBoxMorph comes to the front when the user clicks since it is modal.
=============== Diff against Morphic-edc.347 ===============
Item was changed:
----- Method: UserDialogBoxMorph>>mouseDown: (in category 'events') -----
mouseDown: event
+ "Always bring me to the front since I am modal"
+ self comeToFront.
(self containsPoint: event position) ifFalse:[
Beeper beepPrimitive.
^self flash].
event hand grabMorph: self.!