Deactivate window scale (but only for the application running, not IntelliJ itself)
已回答
My display is 2160p and I use 200% window scale to be able to read well. I need it to read the IntelliJ code and it needs to stay. The problem is that it also double everything in the codes I'm running.
I want to be able to say
window.setSize(3840, 2160); and get a window of that size.
Using 1080 window does not give me a true 2160p window, it give me a 1080p window doubled into 2160p. (resolution loss)
Thanks for the help!
请先登录再写评论。
Hello!
To maintain true 2160p resolution with 200% scaling, try adjusting IntelliJ properties or disabling display scaling for IntelliJ in Windows settings. Use window.setSize(3840, 2160) to achieve the desired window size without resolution loss. Does this help resolve your issue?
Hello
Try to use `-Dsun.java2d.uiScale=1.0` parameter for the IDE. Then size/coordinates will be 1:1. In such case you may need to increase font or scale IDE by the zoom feature as well