diff --git a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java index 8cc475d3eb9..ffa7a7c6cc6 100644 --- a/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java +++ b/bundles/org.eclipse.swt/Eclipse SWT/gtk/org/eclipse/swt/graphics/Image.java @@ -215,7 +215,6 @@ public final class Image extends Resource implements Drawable { public Image(Device device, int width, int height) { super(device); Point size = new Point(width, height); - currentDeviceZoom = DPIUtil.getDeviceZoom(); init(size.x, size.y); init(); } @@ -410,7 +409,6 @@ public Image(Device device, Image srcImage, int flag) { public Image(Device device, Rectangle bounds) { super(device); if (bounds == null) SWT.error(SWT.ERROR_NULL_ARGUMENT); - currentDeviceZoom = DPIUtil.getDeviceZoom(); init(bounds.width, bounds.height); init(); }