1

I have a JButton in Java(Swing):

Button

After the click I get this line around the button:

enter image description here

How do I remove these lines?

Community
  • 1
  • 1
Omid
  • 823
  • 1
  • 11
  • 31

1 Answers1

1

button.setFocusPainted(false); is the right solution!

Omid
  • 823
  • 1
  • 11
  • 31