[squeak-dev] The Inbox: Morphic-kfr.725.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Jun 29 23:30:17 UTC 2014


A new version of Morphic was added to project The Inbox:
http://source.squeak.org/inbox/Morphic-kfr.725.mcz

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

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-kfr.724 ===============

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 Squeak-dev mailing list