Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java
index 06f4496e8a..8cc6a3ce3c 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Drag and Drop/common/org/eclipse/swt/dnd/DropTargetEffect.java
@@ -97,7 +97,7 @@ public class DropTargetEffect extends DropTargetAdapter {
Widget getItem(Table table, int x, int y) {
Point coordinates = new Point(x, y);
- coordinates = table.toControl(coordinates);
+ coordinates = table.toControlInPixels(coordinates);
TableItem item = table.getItem(coordinates);
if (item != null) return item;
Rectangle area = table.getClientAreaInPixels();
@@ -116,7 +116,7 @@ public class DropTargetEffect extends DropTargetAdapter {
Widget getItem(Tree tree, int x, int y) {
Point point = new Point(x, y);
- point = tree.toControl(point);
+ point = tree.toControlInPixels(point);
TreeItem item = tree.getItem(point);
if (item == null) {
Rectangle area = tree.getClientAreaInPixels();

Back to the top