Have a 4K monitor? Running on a Macbook Retina Display in a Windows VM? Are your toolbars microscopic, or fonts ridiculously large in attempts to compensate? Read on!
Problem in a screenshot:
Retina Display sized screen. Canvas and APS are very small at Design Time. Also, toolbar is very small.
In VMWare, one thing I tried was to turn off Retina Display but that ended up making everything too big. (900px horizontal if I recall)
This same problem is also present in Eclipse, so I did some research, I get these results. (Steps follow)
Same resolution, after tweaking some settings:
How I did it:
I found this post related to NetBeans Eclipse explaining the same problem: HiDPI with Eclipse and NetBeans - JAXenter
How to make it work for Design Studio:
<?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>
That's it!
PS. You can use the same trick for your Eclipse SDK setup by placing same file contents in your eclipse directory with filename exclipse.exe.manifest
PPS. If you are an SDKer and want Design Studio to have these benefits from launching Eclipse, this is how I set up a JRE config in Eclipse:
(This is the reason for the javaw.exe.manifest file mentioned in step 2)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
5 | |
3 | |
3 | |
3 | |
3 | |
3 | |
3 | |
3 | |
3 | |
3 |