# HG changeset patch # User Chris Cannam # Date 1402568854 -3600 # Node ID b4acab5027869bca2782a849f2599d443bc25e62 # Parent c58569bd952ea5be83596e812d66f717ad826aad Make sure the play pointer is always visible when the centre line is not diff -r c58569bd952e -r b4acab502786 view/View.cpp --- a/view/View.cpp Thu Jun 12 11:10:21 2014 +0100 +++ b/view/View.cpp Thu Jun 12 11:27:34 2014 +0100 @@ -1820,7 +1820,10 @@ showPlayPointer = false; } else if (m_manager && !m_manager->isPlaying()) { if (m_playPointerFrame == getCentreFrame() && + m_manager->shouldShowCentreLine() && m_followPlay != PlaybackIgnore) { + // Don't show the play pointer when it is redundant with + // the centre line showPlayPointer = false; } }