Merge pull request #1738 from curlymorphic/1724

Changed the Song Editor time position line to correctly draw from under the timeline widget
This commit is contained in:
Tres Finocchiaro
2015-02-04 17:27:55 -05:00

View File

@@ -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
{