From 690995620ad6d139156830848685a67d4a9a004c Mon Sep 17 00:00:00 2001 From: Dave French Date: Wed, 4 Feb 2015 15:41:27 +0000 Subject: [PATCH] Changed the Song Editor time position line to correctly draw from underneath the timeline widget --- src/gui/editors/SongEditor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/editors/SongEditor.cpp b/src/gui/editors/SongEditor.cpp index a9dab5d83..b14f90a37 100644 --- a/src/gui/editors/SongEditor.cpp +++ b/src/gui/editors/SongEditor.cpp @@ -579,7 +579,7 @@ void SongEditor::updatePosition( const MidiTime & _t ) if( x >= trackOpWidth + widgetWidth -1 ) { m_positionLine->show(); - m_positionLine->move( x, 50 ); + m_positionLine->move( x, m_timeLine->height() ); } else {