Re: Changing the font of tool tip text



"Thomas Kellerer" <TAAXADSCBIXW@xxxxxxxxxxxxx> wrote in message
news:4v2k87F1aosl9U1@xxxxxxxxxxxxxxxxxxxxx

You could override createToolTip() and then set the Font:

public JTooltip createToolTip()
{
JToolTip tip = super.createToolTip();
tip.setFont(myFont);
return tip;
}

haven't tried this though.

Thanks, that did the trick.

--
And loving it,

qu0ll
______________________________________________
qu0llSixFour@xxxxxxxxx
(Replace the "SixFour" with numbers to email)


.



Relevant Pages