mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
use tracks-follow-session-time option
This commit is contained in:
parent
08683674ce
commit
3367c03353
1 changed files with 3 additions and 1 deletions
|
|
@ -36,7 +36,9 @@ using std::string;
|
|||
|
||||
Stripable::Stripable (Session& s, string const & name, PresentationInfo const & pi)
|
||||
: SessionObject (s, name)
|
||||
, Automatable (s, Temporal::TimeDomainProvider ((pi.flags() & PresentationInfo::MidiIndicatingFlags) ? Temporal::BeatTime : Temporal::AudioTime))
|
||||
, Automatable (s, s.config.get_tracks_follow_session_time() ?
|
||||
Temporal::TimeDomainProvider ((pi.flags() & PresentationInfo::MidiIndicatingFlags) ? Temporal::BeatTime : Temporal::AudioTime) :
|
||||
Temporal::TimeDomainProvider (s.time_domain(), s))
|
||||
, _presentation_info (pi)
|
||||
, _active_color_picker (0)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue