All Downloads are FREE. Search and download functionalities are using the official Maven repository.

lphystudio.core.swing.TidyComboBox Maven / Gradle / Ivy

The newest version!
package lphystudio.core.swing;

import javax.swing.*;
import java.awt.*;

public class TidyComboBox extends JComboBox {

    public TidyComboBox(U[] data) {
        super(data);
    }

    /**
     * {@inheritDoc}
     */
    @Override
    public Dimension getMaximumSize() {
        Dimension max = super.getMaximumSize();
        max.height = getPreferredSize().height;
        max.width = getPreferredSize().width + max.height;
        return max;
    }
}