The Trunk: EToys-mt.327.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: EToys-mt.327.mcz

commits-2
Marcel Taeumel uploaded a new version of EToys to project The Trunk:
http://source.squeak.org/trunk/EToys-mt.327.mcz

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

Name: EToys-mt.327
Author: mt
Time: 11 May 2018, 9:59:07.436977 am
UUID: fd205533-1369-ee42-9cbb-85a0980378ff
Ancestors: EToys-mt.326

Consistency.

=============== Diff against EToys-mt.326 ===============

Item was changed:
  ----- Method: BroomMorph>>justDroppedInto:event: (in category 'dropping/grabbing') -----
  justDroppedInto: aMorph event: anEvent
  super justDroppedInto: aMorph event: anEvent.
  aMorph isPlayfieldLike ifFalse: [ ^self delete ].
  self centered: anEvent hand lastEvent yellowButtonPressed.
  self transient ifFalse: [ ^self ].
  self reset.
  self hotspot: (start := anEvent position).
+ anEvent hand newMouseFocus: self.
+ anEvent hand newKeyboardFocus: self.
- anEvent hand mouseFocus: self.
- anEvent hand keyboardFocus: self.
  "Cursor blank show."!

Item was changed:
  ----- Method: BroomMorph>>mouseDown: (in category 'event handling') -----
  mouseDown: evt
  self reset.
  self resetFilter.
  self hotspot: (start := evt position).
+ evt hand newMouseFocus: self.
+ evt hand newKeyboardFocus: self.
- evt hand mouseFocus: self.
- evt hand keyboardFocus: self.
  "Cursor blank show."!