mirror of
https://github.com/cookiengineer/audacity
synced 2025-12-18 14:41:20 +01:00
Fix flickering tooltips in TrackPanel
This commit is contained in:
@@ -991,8 +991,11 @@ void TrackPanel::HandleMotion
|
||||
/* i18n-hint Esc is a key on the keyboard */
|
||||
status += wxT(" "), status += _("(Esc to cancel)");
|
||||
mListener->TP_DisplayStatusMessage(status);
|
||||
if (tooltip != GetToolTipText())
|
||||
this->SetToolTip(tooltip);
|
||||
if (tooltip != GetToolTipText()) {
|
||||
// Unset first, by analogy with AButton
|
||||
UnsetToolTip();
|
||||
SetToolTip(tooltip);
|
||||
}
|
||||
if (pCursor)
|
||||
SetCursor( *pCursor );
|
||||
|
||||
|
||||
Reference in New Issue
Block a user