we've got an old Delphi Application that doesn't work with DPI Scaling, so the manifest looks like
The problem is, the fonts in the Chrome window look very bad on a computer with 4k resolution and 175% scaling. (on 1k and 100% everything is normal)<asmv3:application>
<asmv3:windowsSettings >
<dpiAware xmlns="http://schemas.microsoft.com/SMI/2005/WindowsSettings">false</dpiAware>
<dpiAwareness xmlns="http://schemas.microsoft.com/SMI/2016/WindowsSettings">unaware</dpiAwareness>
<gdiScaling xmlns="http://schemas.microsoft.com/SMI/2017/WindowsSettings">true</gdiScaling>
</asmv3:windowsSettings>
</asmv3:application>
I tried to use the OSR browser to solve this, but doesn't really know where to start. Is it possible?