8154846: SwingNode does not resize when content size constraints are changed
Reviewed-by: prr, angorya, arapte
This commit is contained in:
parent
37aed6f46d
commit
37eb98604f
@ -370,13 +370,6 @@ public final class JLightweightFrame extends LightweightFrame implements RootPan
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
contentPane.setLayout(new BorderLayout());
|
contentPane.setLayout(new BorderLayout());
|
||||||
contentPane.add(component);
|
|
||||||
if ("true".equals(AccessController.
|
|
||||||
doPrivileged(new GetPropertyAction("swing.jlf.contentPaneTransparent", "false"))))
|
|
||||||
{
|
|
||||||
contentPane.setOpaque(false);
|
|
||||||
}
|
|
||||||
setContentPane(contentPane);
|
|
||||||
|
|
||||||
contentPane.addContainerListener(new ContainerListener() {
|
contentPane.addContainerListener(new ContainerListener() {
|
||||||
@Override
|
@Override
|
||||||
@ -396,6 +389,15 @@ public final class JLightweightFrame extends LightweightFrame implements RootPan
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
contentPane.add(component);
|
||||||
|
contentPane.revalidate();
|
||||||
|
contentPane.repaint();
|
||||||
|
if ("true".equals(AccessController.
|
||||||
|
doPrivileged(new GetPropertyAction("swing.jlf.contentPaneTransparent", "false"))))
|
||||||
|
{
|
||||||
|
contentPane.setOpaque(false);
|
||||||
|
}
|
||||||
|
setContentPane(contentPane);
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("deprecation")
|
@SuppressWarnings("deprecation")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user