Support High DPI on Windows 7.

Replaced the manifest content with that suggested on an MSDN blog post.
The "True/PM" setting resolves to system High DPI awareness on Win7, and
per-monitor support in Win8.

The latter doesn't seem to work properly though, as there's no scaling
change as I move the LOOT window between monitors with different DPI
scaling settings...
This commit is contained in:
Oliver Hamlet
2015-01-30 21:14:55 +00:00
parent 547768352c
commit b558c66d65
+7 -7
View File
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<application xmlns="urn:schemas-microsoft-com:asm.v3">
<windowsSettings>
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">Per Monitor</dpiAware>
</windowsSettings>
</application>
</assembly>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3" >
<asmv3:application>
<asmv3:windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
<dpiAware>True/PM</dpiAware>
</asmv3:windowsSettings>
</asmv3:application>
</assembly>