[Pkg] The Trunk: Morphic-dtl.728.mcz

commits at source.squeak.org commits at source.squeak.org
Tue Jul 1 00:03:11 UTC 2014


David T. Lewis uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-dtl.728.mcz

==================== Summary ====================

Name: Morphic-dtl.728
Author: dtl
Time: 30 June 2014, 7:54:20.636 pm
UUID: 12cab578-cf54-4e11-b9f0-089feae20000
Ancestors: Morphic-dtl.727

merge Morphic-kfr.725 (see treated inbox)

Name: Morphic-kfr.725
Author: kfr
Time: 30 June 2014, 1:29:08.312 am
UUID: 359dc2ea-3594-6842-9729-18c790f163a7
Ancestors: Morphic-kfr.724

Add two missed changes for mouse sensitive keyboard focus preference control.

=============== Diff against Morphic-dtl.727 ===============

Item was changed:
  ----- Method: ScrollPane>>mouseEnter: (in category 'event handling') -----
  mouseEnter: event
+ 	Preferences mouseOverForKeyboardFocus ifTrue:[hasFocus := true].
- 	hasFocus := true.
  	(owner isSystemWindow) ifTrue: [owner paneTransition: event].
  	retractableScrollBar ifTrue:[ self hideOrShowScrollBars ].
  !

Item was changed:
  ----- Method: ScrollPane>>mouseLeave: (in category 'event handling') -----
  mouseLeave: event
+ 	Preferences mouseOverForKeyboardFocus ifTrue:[hasFocus := false].
- 	hasFocus := false.
  	retractableScrollBar ifTrue: [self hideScrollBars].
  	(owner isSystemWindow) ifTrue: [owner paneTransition: event]
  !



More information about the Packages mailing list