SoapUI on windows 10 - high DPI/4K scaling issue -


soapui doesn't seem dpi-aware , displays small on high dpi screen (tiny text , buttons). other applications running fine (screen resolution 3840 x 2160).

toosmall

version: soapui 5.1.2
os: windows 10

i have tried:

  • configure soapui run "disable display scaling on high dpi settings" - parts of soapui looking bigger , don't display (image)
  • changing resolution
  • changing font size (preferences > editor settings > select font...)


therefore assume, soapui pretends dpi-aware, not scale itself. have same issue?

this workaround until developers round making version dpi-aware.

step 1: add registry key hkey_local_machine\software\microsoft\windows\currentversion\sidebyside\preferexternalmanifest (dword) 1

step 2: add manifest file 'soapui-5.2.1.exe.manifest' in same directory 'soapui-5.2.1.exe'

content of manifest file:

<?xml version="1.0" encoding="utf-8" standalone="yes"?> <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestversion="1.0" xmlns:asmv3="urn:schemas-microsoft-com:asm.v3">     <description>eclipse</description>     <trustinfo xmlns="urn:schemas-microsoft-com:asm.v2">         <security>             <requestedprivileges>                 <requestedexecutionlevel xmlns:ms_asmv3="urn:schemas-microsoft-com:asm.v3"                     level="asinvoker" ms_asmv3:uiaccess="false">                 </requestedexecutionlevel>             </requestedprivileges>         </security>     </trustinfo>     <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">false</ms_windowssettings:dpiaware>         </asmv3:windowssettings>     </asmv3:application> </assembly> 


correct dpi scaling: corect


Comments

Popular posts from this blog

Ansible - ERROR! the field 'hosts' is required but was not set -

customize file_field button ruby on rails -