Browse Source

Fix DPI scaling on Windows

the manifest appears to be very sensitive to changes
closes #9744
sfan5 3 years ago
parent
commit
8b45f6a5f3
1 changed files with 2 additions and 2 deletions
  1. 2 2
      misc/minetest.exe.manifest

+ 2 - 2
misc/minetest.exe.manifest

@@ -8,8 +8,8 @@
         </security>
     </trustInfo>
     <application xmlns="urn:schemas-microsoft-com:asm.v3">
-        <windowsSettings xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">
-            <dpiAware>true</dpiAware>
+        <windowsSettings>
+            <dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">true</dpiAware>
         </windowsSettings>
     </application>
 </assembly>