Marcel Taeumel uploaded a new version of Kernel to project The Trunk:
http://source.squeak.org/trunk/Kernel-mt.1027.mcz==================== Summary ====================
Name: Kernel-mt.1027
Author: mt
Time: 31 May 2016, 10:43:24.59966 am
UUID: a9379948-081f-fb4f-a55d-5f72c6d674e5
Ancestors: Kernel-pre.1026
Appendix to Morphic-mt.1154.
=============== Diff against Kernel-pre.1026 ===============
Item was changed:
----- Method: Model class>>windowActiveOnFirstClick (in category 'preferences') -----
windowActiveOnFirstClick
+ <preference: 'Windows'' Contents Are Always Active'
- <preference: 'Windows Active On First Click'
category: 'windows'
+ description: 'When enabled, the widgets of background windows are sensitive to mouse input. When disabled, clicking background window will only make it the active window, without changing, for example, selections in lists or text fields.'
- description: 'When enabled, the widgets of background (inactive) windows are sensitive to mouse input. When disabled, clicking background window will only make it the active window, without changing, for example, selections in lists or text fields.'
type: #Boolean>
^ WindowActiveOnFirstClick ifNil: [ false ]!
Item was changed:
----- Method: Model class>>windowActiveOnFirstClick: (in category 'preferences') -----
windowActiveOnFirstClick: aBoolean
+ WindowActiveOnFirstClick := aBoolean.
+ (Smalltalk classNamed: #SystemWindow) ifNotNil: [:c | c reconfigureWindowsForFocus].!
- WindowActiveOnFirstClick := aBoolean.!