1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-24 08:10:05 +02:00

Bug 1456 - Scrub Bar tooltip is incorrect on mouse down because there is no separate tooltip for that state

This commit is contained in:
James Crook 2016-08-10 22:21:21 +01:00
parent 5939fe66e8
commit a90f32e60d

View File

@ -2122,6 +2122,9 @@ namespace {
else
return _("Move to Scrub");
#else
wxMouseState State = wxGetMouseState();
if( State.LeftIsDown() )
return _("Release and move to Scrub. Drag to Seek.");
return _("Move to Scrub, drag to Seek");
#endif
}