I have a program that creates tooltips using Figure.setToolTip(). Everything works great except that the tooltip disappears after a few seconds. The tooltip can contain a lot of information and I would like the tooltip to stay longer (or even indefinitely, until the cursor exits the figure).
I haven't found any methods or fields in the ToolTipHelper class that deal with this. Is this even possible to do?
The only other work around I can think of is to simply display a figure with the tooltips inside upon mouseEnter() and hide it on mouseExited(). But I would much rather use the built in tooltip feature.