summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2019-10-28 17:34:23 -0600
committerPaul Davis <paul@linuxaudiosystems.com>2019-10-28 17:34:23 -0600
commit594f344ccae4adfd3a29fb15350c03338ed47c6c (patch)
tree394fe13740778cceaa60399b1560ec70050664d7
parente2bb59a3e3c0d901c42c52eefe86465650639e8c (diff)
fix thinko
-rw-r--r--libs/ardour/session_state.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/ardour/session_state.cc b/libs/ardour/session_state.cc
index 7dde0047da..fe3368c50c 100644
--- a/libs/ardour/session_state.cc
+++ b/libs/ardour/session_state.cc
@@ -280,7 +280,7 @@ Session::post_engine_init ()
/* crossfades require sample rate knowledge */
SndFileSource::setup_standard_crossfades (*this, sample_rate());
- _engine.GraphReordered.connect_same_thread (*this, boost::bind (&Session::graph_reordered, this, false));
+ _engine.GraphReordered.connect_same_thread (*this, boost::bind (&Session::graph_reordered, this, true));
_engine.MidiSelectionPortsChanged.connect_same_thread (*this, boost::bind (&Session::rewire_midi_selection_ports, this));
DiskReader::allocate_working_buffers();