Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2020-05-15 12:11:22 +0000
committerSravan Kumar Lakkimsetti2020-05-15 12:12:42 +0000
commitd62778411f432f94ac17aa9e4af5841c8a5badab (patch)
treee2535dde370ed28e999a3c856bcb8910c209bf6b
parentb6321a99e75b725c0d32bf08cb11485cb2fae744 (diff)
downloadeclipse.platform.swt-d62778411f432f94ac17aa9e4af5841c8a5badab.tar.gz
eclipse.platform.swt-d62778411f432f94ac17aa9e4af5841c8a5badab.tar.xz
eclipse.platform.swt-d62778411f432f94ac17aa9e4af5841c8a5badab.zip
Bug 563210 - Icons missing for xsl, jar, sh etc files in Package/Project
Explorer and Resource Dialog Change-Id: I5f30b749066be6160022b606c8e8374a7db6b802 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/internal/graphics/ImageUtil.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/internal/graphics/ImageUtil.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/internal/graphics/ImageUtil.java
index 5ea70a5958..10c422d8a0 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/internal/graphics/ImageUtil.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/internal/graphics/ImageUtil.java
@@ -51,7 +51,7 @@ public class ImageUtil {
NSRect sourceRect = new NSRect();
sourceRect.width = 0;
sourceRect.height = 0;
- imgHandle.drawInRect(target, sourceRect, OS.NSCompositeCopy, 0);
+ imgHandle.drawInRect(target, sourceRect, OS.NSCompositeCopy, 1);
NSGraphicsContext.static_restoreGraphicsState();
rep.autorelease();
return rep;

Back to the top