提交 6d676e1e 编写于 作者: A anthony

6862611: Reg testcase closed/java/awt/Component/NativeInLightShow/NativeInLightShow.html fails

Summary: The recursiveShowHeavyweightChildren() must be invoked unconditionally in mixOnShowing()
Reviewed-by: art, dcherepanov
上级 6142cd80
......@@ -4111,16 +4111,16 @@ public class Container extends Component {
mixingLog.fine("this = " + this);
}
if (!isMixingNeeded()) {
return;
}
boolean isLightweight = isLightweight();
if (isLightweight && isRecursivelyVisibleUpToHeavyweightContainer()) {
recursiveShowHeavyweightChildren();
}
if (!isMixingNeeded()) {
return;
}
if (!isLightweight || (isLightweight && hasHeavyweightDescendants())) {
recursiveApplyCurrentShape();
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册