From 2e5c935990d6ea5cc6e9a5a6de0fd8c52e68657c Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Tue, 12 May 2009 00:24:59 +0000 Subject: [PATCH] Add missing connection to Editor::route_list_reordered git-svn-id: svn://localhost/ardour2/branches/3.0@5068 d708f5d6-7413-0410-9779-e7cbd77b26cf --- gtk2_ardour/editor.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/gtk2_ardour/editor.cc b/gtk2_ardour/editor.cc index 48367044bc..fa4d3b2144 100644 --- a/gtk2_ardour/editor.cc +++ b/gtk2_ardour/editor.cc @@ -574,6 +574,7 @@ Editor::Editor () route_display_model->signal_row_deleted().connect (mem_fun (*this, &Editor::route_list_delete)); route_display_model->signal_row_changed().connect (mem_fun (*this, &Editor::route_list_change)); + route_display_model->signal_rows_reordered().connect (mem_fun (*this, &Editor::route_list_reordered)); route_list_display.signal_button_press_event().connect (mem_fun (*this, &Editor::route_list_display_button_press), false);