1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-12-15 09:01:12 +01:00

Windows requires an explicit tooltip unset

Linux and Mac did not, but it doesn't hurt to do it for all.
This commit is contained in:
Leland Lucius
2020-03-11 01:44:21 -05:00
parent 16a8fa71db
commit ac37d78388

View File

@@ -842,6 +842,11 @@ void CellularPanel::HandleClick( const TrackPanelMouseEvent &tpmEvent )
else {
Filter::spActivePanel = this;
#if wxUSE_TOOLTIPS
// Remove any outstanding tooltip
UnsetToolTip();
#endif
if( !HasFocus() && AcceptsFocus() )
SetFocusIgnoringChildren();