base.setBackdrop(grad);
}
// STATUS BAR
{
final UIFrameStatusBar statusBar = component.getStatusBar();
// Make sure exists and is attached
if (statusBar != null && statusBar.getParent() == component.getBasePanel()) {
statusBar.setLocalComponentHeight(12);
statusBar.setMaximumContentHeight(statusBar.getContentHeight());
final UIButton resize = statusBar.getResizeButton();
if (resize != null && resize.getParent() == statusBar) {
for (final UIState state : resize.getStates()) {
state.setBackdrop(new EmptyBackdrop());
state.setBorder(new EmptyBorder());
state.setPadding(new Insets(0, 0, 0, 0));