[squeak-dev] The Trunk: Morphic-mt.1032.mcz

commits at source.squeak.org commits at source.squeak.org
Sun Nov 8 16:00:06 UTC 2015


Marcel Taeumel uploaded a new version of Morphic to project The Trunk:
http://source.squeak.org/trunk/Morphic-mt.1032.mcz

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

Name: Morphic-mt.1032
Author: mt
Time: 8 November 2015, 4:59:25.52 pm
UUID: 7edcfd43-992b-48dd-ba30-c500c21c028c
Ancestors: Morphic-mt.1031

Remove hover-indication when mouse-leaving tree morphs.

=============== Diff against Morphic-mt.1031 ===============

Item was changed:
  ----- Method: SimpleHierarchicalListMorph>>mouseLeave: (in category 'event handling') -----
  mouseLeave: aMouseEvent 
  	super mouseLeave: aMouseEvent.
+ 	self hoveredMorph: nil.
  	(SystemWindow allWindowsAcceptInput or: [ Preferences mouseOverForKeyboardFocus ]) ifTrue: [ aMouseEvent hand releaseKeyboardFocus: self ]!

Item was changed:
  ----- Method: SimpleHierarchicalListMorph>>mouseLeaveDragging: (in category 'event handling') -----
  mouseLeaveDragging: anEvent
+ 
+ 	self hoveredMorph: nil.
  	(self dropEnabled and:[anEvent hand hasSubmorphs]) ifFalse: ["no d&d"
  		^ super mouseLeaveDragging: anEvent].
  	self resetPotentialDropMorph.
  	anEvent hand releaseMouseFocus: self.
  	"above is ugly but necessary for now"
  !



More information about the Squeak-dev mailing list