diff options
| author | Grant Gayed | 2013-02-13 17:32:06 +0000 |
|---|---|---|
| committer | Carolyn MacLeod | 2013-03-19 16:30:46 +0000 |
| commit | c4df01ce701de8a0f84d65d7e09c4fc9d9e64f42 (patch) | |
| tree | 427fa17b15493c1b93112cf5af018e3c9ad5196c | |
| parent | a22458203807be79232cfcac84acf6223bed8751 (diff) | |
| download | eclipse.platform.swt-c4df01ce701de8a0f84d65d7e09c4fc9d9e64f42.tar.gz eclipse.platform.swt-c4df01ce701de8a0f84d65d7e09c4fc9d9e64f42.tar.xz eclipse.platform.swt-c4df01ce701de8a0f84d65d7e09c4fc9d9e64f42.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.java | 5 |
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 |
