From 3b8214bab8f0cee407f2b4b11e0b503212f6e06a Mon Sep 17 00:00:00 2001 From: Wong Cho Ching Date: Fri, 24 Jan 2014 18:39:00 +0800 Subject: [PATCH] Loop marker: Changed tooltip text. --- src/core/timeline.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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 ); }