Changed the Song Editor time position line to correctly draw from underneath the timeline widget

This commit is contained in:
Dave French
2015-02-04 15:41:27 +00:00
parent b48c392dce
commit 690995620a

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
{