Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeo Ufimtsev2017-06-12 16:12:34 +0000
committerLeo Ufimtsev2017-06-12 16:12:34 +0000
commit982b35c1b0de3192655e62e5118ad045ab1efd5b (patch)
treea63ac580e06ad6d0e0413c7fe7bdafd43dbe5229
parenta8056906b41eb2845e36ea4b962b1544448ce563 (diff)
downloadeclipse.platform.swt-982b35c1b0de3192655e62e5118ad045ab1efd5b.tar.gz
eclipse.platform.swt-982b35c1b0de3192655e62e5118ad045ab1efd5b.tar.xz
eclipse.platform.swt-982b35c1b0de3192655e62e5118ad045ab1efd5b.zip
Revert "Bug 517508 – SWT.ICON_SEARCH is ugly under Linux"Y20170622-1000Y20170620-0625Y20170619-2325Y20170618-0415
Backport merged too early. Need to wait till 4.7.0 release. This reverts commit a8056906b41eb2845e36ea4b962b1544448ce563. Change-Id: I90acde26be4b492d7fc7e991d0fe01aeae841677
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java6
1 files changed, 2 insertions, 4 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
index b22465f18b..7b3e69eb2e 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
@@ -685,11 +685,9 @@ public class OS extends C {
/* Named icons.
* See https://docs.google.com/spreadsheet/pub?key=0AsPAM3pPwxagdGF4THNMMUpjUW5xMXZfdUNzMXhEa2c&output=html
* See http://standards.freedesktop.org/icon-naming-spec/icon-naming-spec-latest.html#names
- * Icon preview tool: gtk3-icon-browser
- * Snippets often demonstrate usage of these. E.x 309, 258.
* */
- public static final byte[] GTK_NAMED_ICON_FIND = ascii("system-search-symbolic"); //Replacement of GTK_STOCK_FIND
- public static final byte[] GTK_NAMED_ICON_CLEAR = ascii("edit-clear-symbolic"); //Replacement of GTK_STOCK_CLEAR
+ public static final byte[] GTK_NAMED_ICON_FIND = ascii("edit-find"); //Replacement of GTK_STOCK_FIND
+ public static final byte[] GTK_NAMED_ICON_CLEAR = ascii("edit-clear"); //Replacement of GTK_STOCK_CLEAR
public static final byte[] GTK_NAMED_ICON_GO_UP = ascii ("go-up-symbolic");

Back to the top