Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNiraj Modi2021-11-16 11:15:40 +0000
committerSravan Kumar Lakkimsetti2021-11-16 11:20:44 +0000
commit0bdb84facce5e1da8ba39f6ccf58e953372d45c8 (patch)
treee8ce072892fa8810fb4f492adcd1580d39aa25b7
parentf0e3b7326852bb91876030caca508ac2902a4777 (diff)
downloadrt.equinox.framework-0bdb84facce5e1da8ba39f6ccf58e953372d45c8.tar.gz
rt.equinox.framework-0bdb84facce5e1da8ba39f6ccf58e953372d45c8.tar.xz
rt.equinox.framework-0bdb84facce5e1da8ba39f6ccf58e953372d45c8.zip
Bug 572262 - [win32] consistently enable SWT dpi awareness settings
- DPI awareness changes similar to SWT's java.exe.manifest. Change-Id: Ib3a2620f59b2b63766dc728f611e41745d909c36 Signed-off-by: Niraj Modi <niraj.modi@in.ibm.com> Reviewed-on: https://git.eclipse.org/r/c/equinox/rt.equinox.framework/+/187779 Reviewed-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com> Tested-by: Sravan Kumar Lakkimsetti <sravankumarl@in.ibm.com>
-rw-r--r--features/org.eclipse.equinox.executable.feature/library/win32/eclipse.exe.manifest14
1 files changed, 9 insertions, 5 deletions
diff --git a/features/org.eclipse.equinox.executable.feature/library/win32/eclipse.exe.manifest b/features/org.eclipse.equinox.executable.feature/library/win32/eclipse.exe.manifest
index 9902ec75e..60468f8f4 100644
--- a/features/org.eclipse.equinox.executable.feature/library/win32/eclipse.exe.manifest
+++ b/features/org.eclipse.equinox.executable.feature/library/win32/eclipse.exe.manifest
@@ -7,11 +7,15 @@
<assemblyIdentity type="win32" name="Microsoft.Windows.Common-Controls" version="6.0.0.0" processorArchitecture="*" publicKeyToken="6595b64144ccf1df" language="*"/>
</dependentAssembly>
</dependency>
- <asmv3:application>
- <asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
- <ms_windowsSettings:dpiAware xmlns:ms_windowsSettings="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</ms_windowsSettings:dpiAware>
- </asmv3:windowsSettings>
- </asmv3:application>
+ <application xmlns="urn:schemas-microsoft-com:asm.v3">
+ <windowsSettings>
+ <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true/pm</dpiAware>
+ <dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">PerMonitorV2, PerMonitor</dpiAwareness>
+ <!-- Un-comment the line below to enable GDI-scaling in this project. This will enable text -->
+ <!-- to render crisply in DPI-unaware content -->
+ <!--<gdiScaling xmlns="http://schemas.microsoft.com/SMI/2017/WindowsSettings">true</gdiScaling>-->
+ </windowsSettings>
+ </application>
<compatibility xmlns="urn:schemas-microsoft-com:compatibility.v1">
<application>
<supportedOS Id="{8e0f7a12-bfb3-4fe8-b9a5-48fd50a15a9a}"/>

Back to the top