class: DragAndDropManager
authorClaus Gittinger <cg@exept.de>
Mon, 22 Dec 2014 00:33:02 +0100
changeset 3436 bf6858caeb31
parent 3435 cd6076adce47
child 3437 4e1cf7b6b492
class: DragAndDropManager changed: #translatePointToScreen:from: (send #transformPoint: instead of #applyTo:)
DragAndDropManager.st
--- 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 $'
 ! !