rollback 1.5f scale factor.

This commit is contained in:
Konstantin Bulenkov
2015-07-20 13:23:33 +02:00
parent e442a50e39
commit 2c536a1679
@@ -59,7 +59,7 @@ public class JBUI {
}
public static int scale(int i) {
return isHiDPI() ? (int)(1.5f * i) : i;
return isHiDPI() ? 2 * i : i;
}
public static JBDimension size(int width, int height) {