I’m upgrading Juce to version 1.38 from 1.27. I have my own class of ComboBox that inherits from TooltipClient. When I try to compile with the new Juce, I get the message that ComboBoxInstance->setTooltip(…) is ambiguous. Sure enough, the ComboBox of version 1.38 implements SettableTooltipClient, which makes my inheritance from TooltipClient redundant. Cool - it’s gone. But now my tooltips acts all funny (in the non-funny way): Tooltips only appear when the mouse curser is at the frame of ComboBoxes… Only the pixels at the very periphery of the components show tooltips.
Anyone had similar problems? Any workarounds?
Thanks!
-A