convert use of operator* for tim::line types with ::scale(ratio_t)

This commit is contained in:
Paul Davis 2022-05-27 12:46:58 -06:00
parent 48f4f9bf9c
commit c8feef51ab
6 changed files with 9 additions and 11 deletions

View file

@ -360,7 +360,7 @@ void
ControlList::_x_scale (ratio_t const & factor)
{
for (iterator i = _events.begin(); i != _events.end(); ++i) {
(*i)->when = (*i)->when.operator* (factor);
(*i)->when = (*i)->when.scale (factor);
}
mark_dirty ();