Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1246.mcz==================== Summary ====================
Name: Morphic-mt.1246
Author: mt
Time: 9 August 2016, 5:15:40.547869 pm
UUID: 913d6c07-4948-5c44-9be2-7f6656e5b6e6
Ancestors: Morphic-mt.1245
Small fix in window focus updates.
=============== Diff against Morphic-mt.1245 ===============
Item was changed:
----- Method: SystemWindow class>>reconfigureWindowsForFocus (in category 'private') -----
reconfigureWindowsForFocus
self allSubInstancesDo: [:window |
window
passivate;
activate;
unlockWindowDecorations;
passivateIfNeeded].
+ self topWindow ifNotNil: [:wnd | wnd activate].!
- self topWindow activate.!