diff --git a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java index 5cb554d7f41..8e9a02ca0de 100644 --- a/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java +++ b/bundles/org.eclipse.ui.workbench/Eclipse UI/org/eclipse/ui/internal/Workbench.java @@ -861,7 +861,7 @@ private static Image getImage(Display display, InputStream input) { * (https://github.com/eclipse-platform/eclipse.platform.swt/issues/772) ,Splash * Screen gets flipped.As a workaround the image is flipped and returned. */ - if (Integer.parseInt(System.getProperty("os.version").split("\\.")[0]) >= 14) { //$NON-NLS-1$ //$NON-NLS-2$ + if (Integer.parseInt(System.getProperty("os.version").split("\\.")[0]) == 14) { //$NON-NLS-1$ //$NON-NLS-2$ GC gc = new GC(image); Transform tr = new Transform(display); tr.setElements(1, 0, 0, -1, 0, 0);