Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorCarolyn MacLeod2013-02-17 23:22:33 +0000
committerCarolyn MacLeod2013-04-09 14:53:14 +0000
commitda88fe82a56079ffe9f54c3b8ab6d1ded9e9efa7 (patch)
treeaff538019e6efd861df8f6584f82da11fe9d7d31
parent3ecc2ff504c7a623924b5c261a256d476d0b2520 (diff)
downloadeclipse.platform.swt-da88fe82a56079ffe9f54c3b8ab6d1ded9e9efa7.tar.gz
eclipse.platform.swt-da88fe82a56079ffe9f54c3b8ab6d1ded9e9efa7.tar.xz
eclipse.platform.swt-da88fe82a56079ffe9f54c3b8ab6d1ded9e9efa7.zip
Bug 343722 - On-screen-keyboard does not work properly
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
index 1763971ca1..633cc713fc 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/StyledText.java
@@ -5932,6 +5932,7 @@ void handleKeyDown(Event event) {
clipboardSelection = new Point(selection.x, selection.y);
}
newOrientation = SWT.NONE;
+ event.stateMask &= SWT.MODIFIER_MASK;
Event verifyEvent = new Event();
verifyEvent.character = event.character;

Back to the top