disables focus in tool bar buttons

This commit is contained in:
hneemann 2019-09-06 21:00:39 +02:00
parent d181710049
commit 26459e1cca

View File

@ -183,6 +183,7 @@ public abstract class ToolTipAction extends AbstractAction {
ToolTipManager.sharedInstance().registerComponent(b);
}
b.setText(null);
b.setFocusable(false);
return b;
}