fix time signature updates timelinewidget also on pos 0 (#3572)

This commit is contained in:
Steffen Baranowsky
2017-05-23 23:38:30 +02:00
committed by GitHub
parent f8a508f939
commit 38bca9af00

View File

@@ -94,6 +94,8 @@ TimeLineWidget::TimeLineWidget( const int xoff, const int yoff, const float ppt,
connect( updateTimer, SIGNAL( timeout() ),
this, SLOT( updatePosition() ) );
updateTimer->start( 50 );
connect( Engine::getSong(), SIGNAL( timeSignatureChanged( int,int ) ),
this, SLOT( update() ) );
}