mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
Make discrete mode work for MIDI automation views. Fixes #3178.
git-svn-id: svn://localhost/ardour2/branches/3.0@7159 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
a57b9cdd99
commit
2881a495ef
3 changed files with 20 additions and 1 deletions
|
|
@ -364,6 +364,10 @@ AutomationTimeAxisView::interpolation_changed ()
|
|||
if (_line) {
|
||||
_line->set_interpolation(style);
|
||||
}
|
||||
|
||||
if (_view) {
|
||||
_view->set_interpolation (style);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
|
@ -373,6 +377,9 @@ AutomationTimeAxisView::set_interpolation (AutomationList::InterpolationStyle st
|
|||
if (_line) {
|
||||
_line->set_interpolation(style);
|
||||
}
|
||||
if (_view) {
|
||||
_view->set_interpolation (style);
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue