public class FlowLayoutSeperator extends JSeparator {
private static final long serialVersionUID = 1L;
public FlowLayoutSeperator() {
super(SwingConstants.VERTICAL);
var fm = this.getFontMetrics(getFont());
this.setPreferredSize(new Dimension(3, fm.getHeight()));
}
}