Last active
May 24, 2018 11:19
-
-
Save kleinlennart/a2269abac598674b3f71602203c084af to your computer and use it in GitHub Desktop.
A few Tooltip commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Appearance time delay | |
ToolTipManager.sharedInstance().setInitialDelay(0); | |
// Position of appearance | |
JButton button = new JButton("") { | |
@Override | |
public Point getToolTipLocation(MouseEvent event) { | |
return new Point(panel.getWidth() / 2, panel.getHeight() / 2); | |
} | |
}; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment