I would like to remove the scrollbar arrow buttons from a scrollbar in a JScrollPane. How would I do this?
It is not the most elegant way... but works for me
JScrollBar jsb = getHorizontalScrollBar(); for(Component c : jsb.getComponents()) { jsb.remove(c); }