Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRobert Roth2016-04-16 08:57:22 +0000
committerRobert Roth2016-04-20 15:00:12 +0000
commita122b64792a58d840d5963a7701ac9f5fff43b3b (patch)
tree7a8c5996b701b49ae5c18080ec31b5c491a2aeea
parentb8aad5a47e813827433aa4e688c2d1cd41dc3de7 (diff)
downloadeclipse.platform.text-a122b64792a58d840d5963a7701ac9f5fff43b3b.tar.gz
eclipse.platform.text-a122b64792a58d840d5963a7701ac9f5fff43b3b.tar.xz
eclipse.platform.text-a122b64792a58d840d5963a7701ac9f5fff43b3b.zip
Bug 477471 - Search view: Remove 'Search Again' from context menu
Removed Search Again from search result context menu. Change-Id: I2e5d1c3ea1a33d1640450834298dade89bcaf4ff Signed-off-by: Robert Roth <robert.roth.off@gmail.com>
-rw-r--r--org.eclipse.search/new search/org/eclipse/search2/internal/ui/SearchView.java2
1 files changed, 1 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 2d4bd7fbc0f..08ea559137c 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
@@ -10,6 +10,7 @@
* Michael Fraenkel (fraenkel@us.ibm.com) - contributed a fix for:
* o New search view sets incorrect title
* (see https://bugs.eclipse.org/bugs/show_bug.cgi?id=60966)
+ * Robert Roth (robert.roth.off@gmail.com) - Bug 477471
*******************************************************************************/
package org.eclipse.search2.internal.ui;
@@ -655,7 +656,6 @@ public class SearchView extends PageBookView implements ISearchResultViewPart, I
public void fillContextMenu(IMenuManager menuManager) {
ISearchResult result= getCurrentSearchResult();
if (result != null) {
- menuManager.appendToGroup(IContextMenuConstants.GROUP_SEARCH, fSearchAgainAction);
// first check if we have a selection for the show in mechanism, bugzilla 127718
IShowInSource showInSource= getAdapter(IShowInSource.class);
if (showInSource != null) {

Back to the top