Hi, it looks like setting a tooltip on a FilenameComponent has no effect. I had to override the setTooltip method in it, with this:
void FilenameComponent::setTooltip (const String& newTooltip)
{
SettableTooltipClient::setTooltip (newTooltip);
filenameBox->setTooltip (newTooltip);
}
in the same spirit than ComboBox::setTooltip.
Is it the right fix or did I miss something?
Btw, would it be too complicated to automatically look for a tooltip in the parents of the widget under focus when no tooltip was set for it? I think this is an expected behavior in most cases.