Option to make mouse over tooltips not disappear

Would it be possible to add a global setting to either adjust the amount of time that mouse over text tooltips are shown or make them not disappear at all until the mouse is moved off of the component?

It gets kind of annoying when you put in a mouse over text that has a bunch of information on it and while you’re reading it the mouse over text box disappears. Then you have to move the mouse off of the component and hover it back onto the component again. If you could adjust the time or turn that time off that would help.

In the meantime you can add the following script to your client startup scripts:ToolTipManager.sharedInstance().setDismissDelay(10000)You can also call:ToolTipManager.sharedInstance().setInitialDelay(1000)for the initial delay.

Oooooo… cool. Thanks Travis!

Sorry but you have to add the following line above the code I gave you earlier to make it work:from javax.swing import ToolTipManager