1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-03-28 09:05:52 +01:00

Track panel tooltips, including TAB key hint...

... and distinguish snapping or not in Select tool.
This commit is contained in:
Paul Licameli
2017-07-13 22:28:55 -04:00
parent 9072628b4c
commit aaed921fd3
2 changed files with 13 additions and 0 deletions

View File

@@ -969,6 +969,11 @@ void TrackPanel::HandleMotion
static wxCursor defaultCursor{ wxCURSOR_ARROW };
pCursor = &defaultCursor;
}
if (HasRotation())
/* i18n-hint TAB is a key on the keyboard */
tip += wxT(" "), tip += _("(TAB for more choices)");
this->SetToolTip(tip);
mListener->TP_DisplayStatusMessage(tip);
if (pCursor)
SetCursor( *pCursor );