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:
parent
5939fe66e8
commit
a90f32e60d
@ -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
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user