We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62ad8d9 commit a0fc6b6Copy full SHA for a0fc6b6
bundles/org.eclipse.swt/Eclipse SWT/win32/org/eclipse/swt/widgets/Display.java
@@ -2772,7 +2772,9 @@ protected void init () {
2772
// Field initialization happens after super constructor
2773
controlByHandle = new HashMap<>();
2774
this.synchronizer = new Synchronizer (this);
2775
- this.coordinateSystemMapper = new SingleZoomCoordinateSystemMapper();
+ if (this.coordinateSystemMapper == null) {
2776
+ this.coordinateSystemMapper = new SingleZoomCoordinateSystemMapper();
2777
+ }
2778
super.init ();
2779
DPIUtil.setDeviceZoom (getDeviceZoom ());
2780
0 commit comments