I\'m trying to run a Java application with -Dsun.java2d.dpiaware=false argument but nothing happens.
-Dsun.java2d.dpiaware=false
I expect to have a blurred UI but with normal size
you can simply use :
System.setProperty("prism.allowhidpi", "false");
It is important that this is at the very start of your application before your main arguments get initialized, i.e. before Application.launch() or at the begining of your main() function