From 009884575c107c4b257950f03787c1c53050dad5 Mon Sep 17 00:00:00 2001 From: Paul Licameli Date: Fri, 29 Apr 2016 11:19:28 -0400 Subject: [PATCH] Revert "Show the hand cursor in the ruler only if quick play is enabled." This reverts commit 3532bc227c09a53c7f394654203f88f2b5e90130. --- src/widgets/Ruler.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/widgets/Ruler.cpp b/src/widgets/Ruler.cpp index e8c25cbe4..3824968e0 100644 --- a/src/widgets/Ruler.cpp +++ b/src/widgets/Ruler.cpp @@ -2227,8 +2227,7 @@ void AdornedRulerPanel::OnMouseEvents(wxMouseEvent &evt) // else, may detect a scrub click below } else if (evt.Entering() || (changeInScrubZone && !inScrubZone)) { - if(mQuickPlayEnabled) - SetCursor(mCursorHand); + SetCursor(mCursorHand); HideQuickPlayIndicator(); return; }