Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Northover2007-09-18 17:57:50 +0000
committerSteve Northover2007-09-18 17:57:50 +0000
commitc950bec09a3a15b577452e16214e066cd8a2dc11 (patch)
tree7d7cfe74ce0bb1893e716c6b50b358ce9da7f06f /bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java
parent4f375a43a124d0c6499643b95010a738e7d29f44 (diff)
downloadeclipse.platform.swt-c950bec09a3a15b577452e16214e066cd8a2dc11.tar.gz
eclipse.platform.swt-c950bec09a3a15b577452e16214e066cd8a2dc11.tar.xz
eclipse.platform.swt-c950bec09a3a15b577452e16214e066cd8a2dc11.zip
148509 - Resize Event/OS.WM_SIZE Lost In Complex UI
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java
index 7c41590b9f..dd72c098d6 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Canvas.java
@@ -619,7 +619,7 @@ LRESULT WM_SIZE (int /*long*/ wParam, int /*long*/ lParam) {
LRESULT WM_WINDOWPOSCHANGED (int /*long*/ wParam, int /*long*/ lParam) {
LRESULT result = super.WM_WINDOWPOSCHANGED (wParam, lParam);
- if (result != null) return result;
+ //if (result != null) return result;
/*
* Bug in Windows. When a window with style WS_EX_LAYOUTRTL
* that contains a caret is resized, Windows does not move the

Back to the top