summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gtk2_ardour/mixer_ui.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/gtk2_ardour/mixer_ui.cc b/gtk2_ardour/mixer_ui.cc
index a6aa36e641..d65138bc3e 100644
--- a/gtk2_ardour/mixer_ui.cc
+++ b/gtk2_ardour/mixer_ui.cc
@@ -517,7 +517,6 @@ Mixer_UI::add_stripables (StripableList& slist)
MixerStrip* strip;
-
try {
PBD::Unwinder<bool> uw (no_track_list_redisplay, true);
@@ -594,10 +593,6 @@ Mixer_UI::add_stripables (StripableList& slist)
row[stripable_columns.stripable] = route;
row[stripable_columns.strip] = strip;
- if (nroutes != 0) {
- _selection.add (strip);
- }
-
} else {
out_packer.pack_start (*strip, false, false);
@@ -618,6 +613,9 @@ Mixer_UI::add_stripables (StripableList& slist)
track_display.set_model (track_model);
+ /* catch up on selection state, which we left to the editor to set */
+ sync_treeview_from_presentation_info (PropertyChange (Properties::selected));
+
if (!from_scratch) {
sync_presentation_info_from_treeview ();
}