Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich2003-10-22 18:41:25 +0000
committerFelipe Heidrich2003-10-22 18:41:25 +0000
commita040cfe59adcf12c28c0cccbaf6b71428d06c16f (patch)
tree3ae1366513384c748b890d1bd356b0c45ec34f08
parentae1f41a7c918da4bcb0b612613f19383e7b8facb (diff)
downloadeclipse.platform.swt-I20031022.tar.gz
eclipse.platform.swt-I20031022.tar.xz
eclipse.platform.swt-I20031022.zip
45306 backportv3026aI20031022
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java2
-rwxr-xr-xbundles/org.eclipse.swt/buildnotes_swt.html1
2 files changed, 2 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
index b5fb13f6b3..88dc495a1d 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Control.java
@@ -1088,7 +1088,7 @@ boolean isActive () {
int index = modalShells.length;
while (--index >= 0) {
Shell modal = modalShells [index];
- if (modal != null && modal != this) {
+ if (modal != null) {
if ((modal.style & bits) != 0) {
Control control = this;
while (control != null) {
diff --git a/bundles/org.eclipse.swt/buildnotes_swt.html b/bundles/org.eclipse.swt/buildnotes_swt.html
index 6f88caee7a..4049e3bb66 100755
--- a/bundles/org.eclipse.swt/buildnotes_swt.html
+++ b/bundles/org.eclipse.swt/buildnotes_swt.html
@@ -30,6 +30,7 @@ SWT</h1>
<br>45122: [browser] Mozilla browser forward() back() always return true
<br>45118: [browser] mozilla browser throws exception after reload in some cases
<br>39106: [DBCS] Cannot input Japanese characters into Text widget with GTK+2, kinput2 and canna
+<br>45306: Mouse events lost in shell launched from secondary application modal shell
</blockquote>
<h2> SWT Build 3.0 025 - Wednesday October 15, 2003 </h2>

Back to the top