summaryrefslogtreecommitdiff
path: root/libs/ardour/route.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2006-03-31 15:51:03 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2006-03-31 15:51:03 +0000
commit9643eb4b2320c2ec77613cddd6a66056514bcdfa (patch)
tree838d6420ae792bf98df7dd0fb313ba6c0c2f00c8 /libs/ardour/route.cc
parented48cdb3dfd10e27558d2d1063049b625830b049 (diff)
a) persist whether the end marker should move at first capture in the session file
b) prevent transport motion if stop-at-session-end is true c) ensure that (more) menu items that provide control over Configuration object options are in the correct state at startup d) Configuration options removed from "have a session" sensitivity toggling e) removed functionally empty default_keys.cc git-svn-id: svn://localhost/trunk/ardour2@433 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/ardour/route.cc')
-rw-r--r--libs/ardour/route.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/route.cc b/libs/ardour/route.cc
index f8905eb43d..d338cee277 100644
--- a/libs/ardour/route.cc
+++ b/libs/ardour/route.cc
@@ -625,7 +625,7 @@ Route::process_output_buffers (vector<Sample*>& bufs, uint32_t nbufs,
if (_session.transport_speed() > 1.5f || _session.transport_speed() < -1.5f) {
pan (bufs, nbufs, nframes, offset, speed_quietning);
} else {
- // cerr << "panner state = " << _panner->automation_state() << endl;
+ // cerr << _name << " panner state = " << _panner->automation_state() << endl;
if (!_panner->empty() &&
(_panner->automation_state() & Play ||
((_panner->automation_state() & Touch) && !_panner->touching()))) {