How to set the dismiss delay for the tooltip

Answered

We can enable over own CustomTooltip using TooltipManager but IdeTooltipManager also showing along with the custom tooltip.

and we cannot able set the dismiss delay or hide for the tooltip through IdeTooltipManager

0
1 comment
If you create a CustomTooltip for a specific JComponent it's possible to set the dismiss delay for the specific tooltip with:
jComponent.putClientProperty(IdeTooltip.TOOLTIP_DISMISS_DELAY_KEY, msDelay)
where msDelay is an Integer value in milliseconds.
0

Please sign in to leave a comment.