Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2013-07-29 14:58:52 +0000
committerGerrit Code Review @ Eclipse.org2013-07-30 18:06:17 +0000
commit9a41049842260567fdbda8010098000382026861 (patch)
treec5dab3d618ef5f9d708b5e1284b65f296ad433c7 /bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java
parentcf7558133e9e953c3fd81604968f20b582949c42 (diff)
downloadeclipse.platform.swt-9a41049842260567fdbda8010098000382026861.tar.gz
eclipse.platform.swt-9a41049842260567fdbda8010098000382026861.tar.xz
eclipse.platform.swt-9a41049842260567fdbda8010098000382026861.zip
Fix icons shading in Gtk3 Table and Tree items.
Done by using the gicon instead of pixbuf attribute. Bug: 404448 [GTK3] Images of disabled buttons are not grayed out Change-Id: I0209b814c77a96346914d12df41a621d19e3a657 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java')
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT PI/gtk/org/eclipse/swt/internal/gtk/OS.java1
1 files changed, 1 insertions, 0 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 722ebee19b..750f49cf91 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
@@ -607,6 +607,7 @@ public class OS extends C {
public static final byte[] model = ascii("model");
public static final byte[] spacing = ascii("spacing");
public static final byte[] pixbuf = ascii("pixbuf");
+ public static final byte[] gicon = ascii("gicon");
public static final byte[] text = ascii("text");
public static final byte[] xalign = ascii("xalign");
public static final byte[] ypad = ascii("ypad");

Back to the top