Marcel Taeumel uploaded a new version of Collections to project The Trunk:
http://source.squeak.org/trunk/Collections-mt.712.mcz==================== Summary ====================
Name: Collections-mt.712
Author: mt
Time: 17 August 2016, 4:57:14.736674 pm
UUID: df56cb06-3e8b-3444-aeae-194a531f000a
Ancestors: Collections-mt.711
Quickfix: Due to some hick-ups with clickable text actions and mouse (up) events, process do-it actions as deferred message. For example, if you open windows in a do-it, those windows will now be at the top again.
(Note that we should think about fixing TextEditor >> #mouseDown: and NewParagraph >> #clickAt:for:controller: later.)
=============== Diff against Collections-mt.711 ===============
Item was changed:
----- Method: TextDoIt>>actOnClickFor: (in category 'as yet unclassified') -----
actOnClickFor: anObject
"Note: evalString gets evaluated IN THE CONTEXT OF anObject
-- meaning that self and all instVars are accessible"
+ Project current addDeferredUIMessage: [Compiler evaluate: evalString for: anObject].
- Compiler evaluate: evalString for: anObject.
^ true !