MATLAB: Tooltip in App Designer

MATLABmatlab app designer

In my App designer for one of the panels I defined a tooltip. Now I want to get rid of it. Everytime i highlight and get rid of it in Code design view, I get a long series of read error messages but the tool string does not get removed. I can't go into code view and delete the line for tooltip string either as it is grayed out. So my question is how do I completely get rid of it without deleting the panel altogether and start over again?

Best Answer

I see it now. This looks like a bug to me. I'll report it. If you do not want the tooltip to appear, the best workaround I can think of is to add the following to your startupFcn Callback.
app.Panel.Tooltip = '';
Of course, replace Panel with whatever you named it.