Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed2013-02-13 17:32:06 +0000
committerCarolyn MacLeod2013-03-22 15:09:25 +0000
commit34493a2e4613eb27dac1d1b8cb2dfdab967d3c12 (patch)
tree65d72bfc3b05da8c84d945ca0f20015cd554a091
parentc01f2a92fe46183a52ab56aca3a01470ff3bd132 (diff)
downloadeclipse.platform.swt-34493a2e4613eb27dac1d1b8cb2dfdab967d3c12.tar.gz
eclipse.platform.swt-34493a2e4613eb27dac1d1b8cb2dfdab967d3c12.tar.xz
eclipse.platform.swt-34493a2e4613eb27dac1d1b8cb2dfdab967d3c12.zip
Bug 384162 - Internal web browser does not catch Tab keystrokes
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java b/bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
index 890781fad3..d3044a1dfe 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Browser/win32/org/eclipse/swt/browser/IE.java
@@ -404,11 +404,6 @@ public void create(Composite parent, int style) {
browser.traverse(SWT.TRAVERSE_TAB_PREVIOUS, e);
e.doit = false;
}
- if (e.detail == SWT.TRAVERSE_TAB_NEXT && e.widget instanceof Browser) {
- /* otherwise will traverse to the WebSite control */
- site.traverse(SWT.TRAVERSE_TAB_NEXT, e);
- e.doit = false;
- }
/*
* Return traversals can sometimes come through TranslateAccelerator,
* depending on where focus is within the Browser. Traversal

Back to the top