I have a base class that extends JButton and uses SwingX DropShadowBorder to add a simple border. The problem is that it displays a temporary fraction in milliseconds every time I hover over a button. Is there any way to disable this log? This is the code I'm using:
DropShadowBorder sb = new DropShadowBorder();
sb.paintBorder(this, g2, 25, 15, 625, 525);
The result is as follows:
1ms
0ms
1ms
1ms
0ms
source
share