summaryrefslogtreecommitdiff
path: root/gtk2_ardour/time_axis_view.cc
diff options
context:
space:
mode:
authorCarl Hetherington <carl@carlh.net>2012-05-27 20:07:13 +0000
committerCarl Hetherington <carl@carlh.net>2012-05-27 20:07:13 +0000
commitf722858e43e3f26736254a27f5517019ae372305 (patch)
treeb0fb8a86bb84a1db138b3eabade5ab7e61c9449c /gtk2_ardour/time_axis_view.cc
parentd33c0d96fb1a44fe25115ab668495be8c712395e (diff)
Patch from tophatdave to improve display of timestretch in
stacked layers mode (#4379). git-svn-id: svn://localhost/ardour2/branches/3.0@12460 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'gtk2_ardour/time_axis_view.cc')
-rw-r--r--gtk2_ardour/time_axis_view.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc
index 229a7065a2..ddf03e968e 100644
--- a/gtk2_ardour/time_axis_view.cc
+++ b/gtk2_ardour/time_axis_view.cc
@@ -764,10 +764,10 @@ TimeAxisView::set_samples_per_unit (double spu)
}
void
-TimeAxisView::show_timestretch (framepos_t start, framepos_t end)
+TimeAxisView::show_timestretch (framepos_t start, framepos_t end, int layers, int layer)
{
for (Children::iterator i = children.begin(); i != children.end(); ++i) {
- (*i)->show_timestretch (start, end);
+ (*i)->show_timestretch (start, end, layers, layer);
}
}