DragAndDropManager.st
changeset 3436 bf6858caeb31
parent 3344 724213c53326
child 3623 9ddec519a3c6
--- a/DragAndDropManager.st	Mon Dec 22 00:26:37 2014 +0100
+++ b/DragAndDropManager.st	Mon Dec 22 00:33:02 2014 +0100
@@ -741,7 +741,7 @@
     "/ get device coordinates
     "/
     (trans := aView transformation) notNil ifTrue:[
-        point := trans applyTo:aPoint
+        point := trans transformPoint:aPoint
     ] ifFalse:[
         point := aPoint
     ].
@@ -1716,11 +1716,11 @@
 !DragAndDropManager class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libview2/DragAndDropManager.st,v 1.93 2014-06-06 07:28:16 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DragAndDropManager.st,v 1.94 2014-12-21 23:33:02 cg Exp $'
 !
 
 version_CVS
-    ^ '$Header: /cvs/stx/stx/libview2/DragAndDropManager.st,v 1.93 2014-06-06 07:28:16 stefan Exp $'
+    ^ '$Header: /cvs/stx/stx/libview2/DragAndDropManager.st,v 1.94 2014-12-21 23:33:02 cg Exp $'
 ! !