Here you can find the source of fixButton(AbstractButton button, String toolTip)
private static void fixButton(AbstractButton button, String toolTip)
//package com.java2s; //License from project: Creative Commons License import java.awt.Insets; import javax.swing.AbstractButton; public class Main { private static final Insets ZERO_INSETS = new Insets(0, 0, 0, 0); private static void fixButton(AbstractButton button, String toolTip) { button.setFocusable(false);/*from w ww.j a v a2s.c om*/ button.setMargin(ZERO_INSETS); button.setToolTipText(toolTip); } }