提交 c36286bd 编写于 作者: L lana

Merge

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