提交 c36286bd 编写于 作者: L lana

Merge

...@@ -95,11 +95,11 @@ public class X11GraphicsEnvironment ...@@ -95,11 +95,11 @@ public class X11GraphicsEnvironment
} }
// Now check for XRender system property // Now check for XRender system property
boolean xRenderRequested = false; boolean xRenderRequested = true;
String xProp = System.getProperty("sun.java2d.xrender"); String xProp = System.getProperty("sun.java2d.xrender");
if (xProp != null) { if (xProp != null) {
if (xProp.equals("true") || xProp.equals("t")) { if (xProp.equals("false") || xProp.equals("f")) {
xRenderRequested = true; xRenderRequested = false;
} else if (xProp.equals("True") || xProp.equals("T")) { } else if (xProp.equals("True") || xProp.equals("T")) {
xRenderRequested = true; xRenderRequested = true;
xRenderVerbose = true; xRenderVerbose = true;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册