[etoys-dev] Etoys: Morphic-kfr.102.mcz

commits at source.squeak.org commits at source.squeak.org
Fri Feb 22 17:23:23 EST 2013


Karl Ramberg uploaded a new version of Morphic to project Etoys:
http://source.squeak.org/etoys/Morphic-kfr.102.mcz

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

Name: Morphic-kfr.102
Author: kfr
Time: 22 February 2013, 11:21:43 pm
UUID: 7673575b-8c62-984a-ab8a-e64747428265
Ancestors: Morphic-kfr.101

A few fixes to the SelectionMorph. 
Among them SelectionMorph>>slideToTrash: fix from

http://tracker.squeakland.org/browse/SQ-251

It can be tested for side effects and rolled back if it
cause any trouble.

=============== Diff against Morphic-kfr.101 ===============

Item was added:
+ ----- Method: NewHandleMorph>>wantsToBeDroppedInto: (in category 'dropping/grabbing') -----
+ wantsToBeDroppedInto: aMorph
+ 	"Only into PasteUps that are not part bins"
+ 
+ 	^ aMorph isWorldMorph!

Item was changed:
  ----- Method: SelectionMorph>>dismissViaHalo (in category 'submorphs-add/remove') -----
  dismissViaHalo
+ 	selectedItems do: [:m | m dismissViaHalo].
- 
  	super dismissViaHalo.
+ 	!
- 	selectedItems do: [:m | m dismissViaHalo]!

Item was changed:
  ----- Method: SelectionMorph>>slideToTrash: (in category 'dropping/grabbing') -----
  slideToTrash: evt
  	self delete.
+ 	"selectedItems do: [:m | m slideToTrash: evt]"!
- 	selectedItems do: [:m | m slideToTrash: evt]!



More information about the etoys-dev mailing list