summaryrefslogtreecommitdiff
path: root/libs/ardour/session_events.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2009-10-30 18:14:25 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2009-10-30 18:14:25 +0000
commite98b3c1ec65f173f357f9b6747d11174e2743cd6 (patch)
tree43e209e88951691811a3371091950952d4ecbaf7 /libs/ardour/session_events.cc
parentc83e48e07a0b4790512c6251d8ad8f941c881021 (diff)
make 3.0 catch up with transport and other changes in 2.X (hand applied, not merged)
git-svn-id: svn://localhost/ardour2/branches/3.0@5989 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/session_events.cc')
-rw-r--r--libs/ardour/session_events.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/ardour/session_events.cc b/libs/ardour/session_events.cc
index b795d3fb59..65635b773f 100644
--- a/libs/ardour/session_events.cc
+++ b/libs/ardour/session_events.cc
@@ -321,7 +321,7 @@ Session::process_event (Event* ev)
switch (ev->type) {
case Event::SetLoop:
- set_play_loop (ev->yes_or_no);
+ set_play_loop (ev->yes_or_no, (ev->speed == 1.0f));
break;
case Event::AutoLoop:
@@ -435,7 +435,7 @@ Session::process_event (Event* ev)
break;
case Event::SetPlayRange:
- set_play_range (ev->yes_or_no);
+ set_play_range (ev->yes_or_no, (ev->speed == 1.0f));
break;
default: