java - Remove the JTabbedPane "currently selected" dotted line -


How can you remove the dotted line around the currently selected tab on the JetBeadPan?

For example:

alt text

See the dotted line around it?

Try setting the focus color

  UIManager.put ( "TabbedPane.focus", new color (0, 0, 0, 0));  

Or set in the same color as background


Comments