diff options
| author | Sravan Kumar Lakkimsetti | 2020-02-11 12:43:19 +0000 |
|---|---|---|
| committer | Sravan Kumar Lakkimsetti | 2020-02-11 12:45:43 +0000 |
| commit | 7afefd0a269900dca511e16bdb0f037877efc22c (patch) | |
| tree | 99e59e47d98fcdf38d7662529df5283bd7319f2d | |
| parent | a8b54245810c238324a63e07960fd2943eb401fd (diff) | |
| download | eclipse.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.java | 9 |
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(); |
