diff --git a/libs/ardour/region.cc b/libs/ardour/region.cc index 0008617bfd..6d608bc9a4 100644 --- a/libs/ardour/region.cc +++ b/libs/ardour/region.cc @@ -568,14 +568,11 @@ Region::special_set_position (timepos_t const & pos) } void -Region::set_position_time_domain (Temporal::TimeDomain ps) +Region::set_position_time_domain (Temporal::TimeDomain td) { - if (_length.val().time_domain() != ps) { + if (_length.val().time_domain() != td) { - boost::shared_ptr pl (playlist()); - -#warning NUTEMPO need to set ALL of length to new TD - //_length.val().set_time_domain (ps); + _length.call().set_time_domain (td); send_change (Properties::time_domain); }