Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSravan Kumar Lakkimsetti2020-02-11 12:43:19 +0000
committerSravan Kumar Lakkimsetti2020-02-11 12:45:43 +0000
commit7afefd0a269900dca511e16bdb0f037877efc22c (patch)
tree99e59e47d98fcdf38d7662529df5283bd7319f2d
parenta8b54245810c238324a63e07960fd2943eb401fd (diff)
downloadeclipse.platform.swt-7afefd0a269900dca511e16bdb0f037877efc22c.tar.gz
eclipse.platform.swt-7afefd0a269900dca511e16bdb0f037877efc22c.tar.xz
eclipse.platform.swt-7afefd0a269900dca511e16bdb0f037877efc22c.zip
Bug 559705 - [Cocoa] [Regression] Arrows in breadcrumb view have white
background Change-Id: If8dd0e61eaf95689d14e071c1e879e2609445034 Signed-off-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java9
1 files changed, 0 insertions, 9 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java
index 9797e86e43..b1ca6905af 100644
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/graphics/Image.java
@@ -1421,15 +1421,6 @@ NSBitmapImageRep getRepresentation () {
targetSize.width = (int) imgSize.width * scaleFactor / 100;
targetSize.height = (int) imgSize.height * scaleFactor / 100;
rep = createImageRep(targetSize);
- switch (scaleFactor) {
- case 100:
- initAlpha_100(rep);
- break;
- case 200:
- initAlpha_200(rep);
- break;
- }
-
}
NSArray reps = handle.representations();
long count = reps.count();

Back to the top