1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-24 07:01:16 +01:00

Show the hand cursor in the ruler only if quick play is enabled.

This commit is contained in:
Paul Licameli
2016-04-29 10:58:46 -04:00
parent adbe221920
commit 3532bc227c

View File

@@ -2227,7 +2227,8 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt)
// else, may detect a scrub click below
}
else if (evt.Entering() || (changeInScrubZone && !inScrubZone)) {
SetCursor(mCursorHand);
if(mQuickPlayEnabled)
SetCursor(mCursorHand);
HideQuickPlayIndicator();
return;
}