Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-11-09 23:17:31 +0000
committerAlexander Kurtakov2020-11-09 23:17:31 +0000
commit26fc67d8a2c66485db034f543513010774295bf2 (patch)
tree75119fbca7542207a5b009851c64b7dc1868bf82
parent7586deb0831a7c0b1475433a42ac2eb18f722770 (diff)
downloadeclipse.platform.ui-26fc67d8a2c66485db034f543513010774295bf2.tar.gz
eclipse.platform.ui-26fc67d8a2c66485db034f543513010774295bf2.tar.xz
eclipse.platform.ui-26fc67d8a2c66485db034f543513010774295bf2.zip
Bug 568652 - Use ICON_SEARCH in About dialog tabsY20201111-0210Y20201110-1200I20201111-1800I20201110-1800
Use ICON_SEARCH in e4 FilteredTree. Change-Id: I9cae5f98629ca937bb657c65afcd7bf9312ba03b Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.e4.ui.dialogs/src/org/eclipse/e4/ui/dialogs/filteredtree/FilteredTree.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/bundles/org.eclipse.e4.ui.dialogs/src/org/eclipse/e4/ui/dialogs/filteredtree/FilteredTree.java b/bundles/org.eclipse.e4.ui.dialogs/src/org/eclipse/e4/ui/dialogs/filteredtree/FilteredTree.java
index b3e1a27a425..1fdfbfe5af6 100644
--- a/bundles/org.eclipse.e4.ui.dialogs/src/org/eclipse/e4/ui/dialogs/filteredtree/FilteredTree.java
+++ b/bundles/org.eclipse.e4.ui.dialogs/src/org/eclipse/e4/ui/dialogs/filteredtree/FilteredTree.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2014, 2015 vogella GmbH and others.
+ * Copyright (c) 2014, 2020 vogella GmbH and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
@@ -567,7 +567,7 @@ public class FilteredTree extends Composite {
* @since 3.3
*/
protected Text doCreateFilterText(Composite parent) {
- return new Text(parent, SWT.SINGLE | SWT.BORDER | SWT.SEARCH | SWT.ICON_CANCEL);
+ return new Text(parent, SWT.SINGLE | SWT.BORDER | SWT.SEARCH | SWT.ICON_CANCEL | SWT.ICON_SEARCH);
}
private String previousFilterText;

Back to the top