Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1093.mcz==================== Summary ====================
Name: Morphic-mt.1093
Author: mt
Time: 3 March 2016, 11:22:03.445273 am
UUID: ca974de9-2076-4052-bf53-b723668933be
Ancestors: Morphic-topa.1092
Makes tree widgets honor the mouse-over-for-keyboard-focus preference. Just like PluggableListMorphs do. Implementation comes from there.
=============== Diff against Morphic-topa.1092 ===============
Item was changed:
----- Method: SimpleHierarchicalListMorph>>mouseEnter: (in category 'event handling') -----
mouseEnter: event
+
super mouseEnter: event.
+
+ (SystemWindow allWindowsAcceptInput or: [Preferences mouseOverForKeyboardFocus])
+ ifTrue: [event hand newKeyboardFocus: self].!
- event hand newKeyboardFocus: self!