diff --git a/src/core/timeline.cpp b/src/core/timeline.cpp index d392ff8c4..121fd525e 100644 --- a/src/core/timeline.cpp +++ b/src/core/timeline.cpp @@ -301,13 +301,20 @@ void timeLine::mousePressEvent( QMouseEvent* event ) m_loopPos[( m_action == MoveLoopBegin ) ? 0 : 1] = t; } - if( m_action == MoveLoopBegin || m_action == MoveLoopEnd ) + if( m_action == MoveLoopBegin ) { delete m_hint; m_hint = textFloat::displayMessage( tr( "Hint" ), tr( "Press to disable magnetic loop points." ), embed::getIconPixmap( "hint" ), 0 ); } + else if( m_action == MoveLoopEnd ) + { + delete m_hint; + m_hint = textFloat::displayMessage( tr( "Hint" ), + tr( "Hold + to move the begin loop point; Press to disable magnetic loop points." ), + embed::getIconPixmap( "hint" ), 0 ); + } mouseMoveEvent( event ); }