Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2013-11-21 13:32:25 +0000
committerDani Megert2013-11-21 13:32:25 +0000
commit9b9921412d58b8c3b2505a317f20e57dcdcb6f37 (patch)
treecff6f301f33f132b9244ffd9c69950bf240c8627
parent61ef2d2fae0f565172bfee19aaff88a590a27ecc (diff)
downloadeclipse.platform.text-9b9921412d58b8c3b2505a317f20e57dcdcb6f37.tar.gz
eclipse.platform.text-9b9921412d58b8c3b2505a317f20e57dcdcb6f37.tar.xz
eclipse.platform.text-9b9921412d58b8c3b2505a317f20e57dcdcb6f37.zip
Fixed bug 415721: [WorkbenchParts] Accessibility - Keyboard focus lost after searchI20131203-0800I20131126-0800
-rw-r--r--org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchView.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchView.java b/org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchView.java
index 0cb2463252e..dc1c5d9f0ea 100644
--- a/org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchView.java
+++ b/org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchView.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2010 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -401,6 +401,7 @@ public class SearchView extends PageBookView implements ISearchResultViewPart, I
}
part.setLastActivation(++fActivationCount);
partActivated(part);
+ page.setFocus();
}
// connect to the new pages

Back to the top