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

commits at source.squeak.org commits at source.squeak.org
Sat Apr 11 14:59:48 UTC 2015


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

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

Name: Morphic-mt.860
Author: mt
Time: 11 April 2015, 4:59:18.42 pm
UUID: ee50df47-55d5-5249-9800-18e78efdf0b1
Ancestors: Morphic-mt.859

Fixed bug where switching from an MVC project back to a Morphic project did fail.

(This bug was related to the Morphic drawing routine and keyboard-focus highlight.)

=============== Diff against Morphic-mt.859 ===============

Item was changed:
  ----- Method: Morph>>hasKeyboardFocus (in category 'event handling') -----
  hasKeyboardFocus
  
+ 	^ self activeHand
+ 		ifNil: [false]
+ 		ifNotNil: [:hand | self hasKeyboardFocus: hand]!
- 	^ self hasKeyboardFocus: self activeHand!

Item was changed:
  ----- Method: Morph>>hasMouseFocus (in category 'event handling') -----
  hasMouseFocus
  
+ 	^ self activeHand
+ 		ifNil: [false]
+ 		ifNotNil: [:hand | self hasMouseFocus: hand]!
- 	^ self hasMouseFocus: self activeHand!



More information about the Squeak-dev mailing list