Fix missing update of BPM display

The problem was a missing redraw after changing the label. This led to a
stucked display, when the tempo dial is used. Now a redraw is added after
the label is changed.
main
Georg Krause 2019-11-03 08:30:43 +01:00
parent 4953b1807f
commit 57cb20368b
1 changed files with 1 additions and 0 deletions

View File

@ -331,6 +331,7 @@ void GMasterTrack::setBpm( float b )
std::stringstream s;
s << round(bpm*10)/10;
tempoDial.copy_label( s.str().c_str() );
tempoDial.redraw();
}
void GMasterTrack::setInputVol(float f)