Hi all,
On the Mac using wx 3.2.6, I've got a wxToolbar and I add some things (like wxButton, wxChoice etc). All these controls have tooltips, but these tips do not show up.
They show fine on Windows. And tips display fine for standard toolbar buttons (using pToolbar->AddTool). It's only the controls added using AddControl that seem to have a problem.
Has anyone else seen this?
Thanks in advance.
Tony.
PS. I tried the toolbar sample as well, adding a tooltip for the wxChoice didn't work either.
wxComboBox *combo = new wxComboBox(toolBar, ID_COMBO, wxEmptyString,wxDefaultPosition, FromDIP(wxSize(100,-1)) );
combo->SetToolTip("Test tooltip for combobox");