Hi - I am trying to resize a JButton icon with in a JToolbar. Just like when you select small view Icon in a Cocoa applications for Cocoa ToolBar Icon. I have tried both:
setMinimumSize(new Dimension(10,10));
setBounds(50,50,50,50);
setSize(new Dimension(10,10));
Neither proved successful. What API syntax should I look at to achieve this effect?