I’m trying to override ComboBox::getTooltip() so that it displays the current item name. I’m finding that I can override Slider::getTooltip() without a problem, but ComboBox::getTooltip(), ignores my override.
My guess is that your code partially works : you will probably only have the tooltip you want when you hover the combobox arrow.
That’s because the combobox contains a label, so when you hover the combobox, it’s actually the label’s tooltip that is used.
Perhaps you can simply set the tooltip using setTooltip?