Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed2001-08-08 21:06:44 +0000
committerGrant Gayed2001-08-08 21:06:44 +0000
commitf8d861f29985fbeb75d3639447cf707d425c38cf (patch)
treefae1a1771e7d9ba219590de42cdff435f3275f99
parent00c1e6f8837f8a5159ed302ec8b02fa49e1237d5 (diff)
downloadeclipse.platform.swt-f8d861f29985fbeb75d3639447cf707d425c38cf.tar.gz
eclipse.platform.swt-f8d861f29985fbeb75d3639447cf707d425c38cf.tar.xz
eclipse.platform.swt-f8d861f29985fbeb75d3639447cf707d425c38cf.zip
fix for 1GBXIEO
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java
index b9cbeaf378..7719da0c94 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Tracker.java
@@ -253,6 +253,8 @@ public boolean open () {
* event. If this happens, return false to indicate
* that the tracking has failed.
*/
+ event.x = newX;
+ event.y = newY;
sendEvent (SWT.Move, event);
if (isDisposed ()) return false;
drawRectangles ();

Back to the top