|
|
|
@ -1273,9 +1273,9 @@ public class EastRegionContainerPane extends UIEastResizableContainer {
|
|
|
|
|
|
|
|
|
|
private UIButton createPopupButton(String type) { |
|
|
|
|
UIButton popupButton = new UIButton(); |
|
|
|
|
if (type.equals(UP_BUTTON)) { |
|
|
|
|
if (StringUtils.equals(type, UP_BUTTON)) { |
|
|
|
|
popupButton = new UIButton(new LazyIcon("collapse_popup")); |
|
|
|
|
} else if (type.equals(DOWN_BUTTON)) { |
|
|
|
|
} else if (StringUtils.equals(type, DOWN_BUTTON)) { |
|
|
|
|
popupButton = new UIButton(new LazyIcon("expand_popup")); |
|
|
|
|
} |
|
|
|
|
popupButton.setUI(new UIButtonUI()); |
|
|
|
|