listComponent.setHeight(Extent.add(height, new Extent(15)));
}
});
}
});
controlsColumn.addButton("Decrease Height (15 px)", new ActionListener() {
public void actionPerformed(ActionEvent e) {
final Extent height = listBox1.getHeight() == null ? new Extent(75) : listBox1.getHeight();
apply(new Applicator() {
public void apply(AbstractListComponent listComponent) {
listComponent.setHeight(Extent.add(height, new Extent(-15)));