Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-11-09 22:11:46 +0000
committerAlexander Kurtakov2020-11-09 22:11:46 +0000
commit7586deb0831a7c0b1475433a42ac2eb18f722770 (patch)
tree55962ac3aa0ced7d5bffb28d8fd9945536c277cf
parent3578ec4a5303c9703e264575270eae4ee607b9d5 (diff)
downloadeclipse.platform.ui-7586deb0831a7c0b1475433a42ac2eb18f722770.tar.gz
eclipse.platform.ui-7586deb0831a7c0b1475433a42ac2eb18f722770.tar.xz
eclipse.platform.ui-7586deb0831a7c0b1475433a42ac2eb18f722770.zip
Bug 568652 - Use ICON_SEARCH in About dialog tabs
In Plugins tab. Change-Id: Ic03600730168f5a08864a22fd118b3ab4e8371e4 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutPluginsPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutPluginsPage.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutPluginsPage.java
index b94b88fc85b..2edf418f264 100644
--- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutPluginsPage.java
+++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/about/AboutPluginsPage.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2016 IBM Corporation and others.
+ * Copyright (c) 2000, 2020 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -351,7 +351,7 @@ public class AboutPluginsPage extends ProductInfoPage {
* @param parent the parent composite to contain the dialog area
*/
protected void createTable(Composite parent) {
- final Text filterText = new Text(parent, SWT.BORDER | SWT.SEARCH | SWT.ICON_CANCEL);
+ final Text filterText = new Text(parent, SWT.BORDER | SWT.SEARCH | SWT.ICON_CANCEL | SWT.ICON_SEARCH);
filterText.setLayoutData(GridDataFactory.fillDefaults().create());
filterText.setMessage(WorkbenchMessages.AboutPluginsDialog_filterTextMessage);
filterText.setFocus();

Back to the top