summaryrefslogtreecommitdiff
path: root/gtk2_ardour/mixer_strip.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/mixer_strip.cc')
-rw-r--r--gtk2_ardour/mixer_strip.cc7
1 files changed, 5 insertions, 2 deletions
diff --git a/gtk2_ardour/mixer_strip.cc b/gtk2_ardour/mixer_strip.cc
index bf82130b95..3f20a479ad 100644
--- a/gtk2_ardour/mixer_strip.cc
+++ b/gtk2_ardour/mixer_strip.cc
@@ -717,6 +717,7 @@ MixerStrip::output_press (GdkEventButton *ev)
}
citems.push_back (SeparatorElem());
+ uint32_t const n_with_separator = citems.size ();
ARDOUR::BundleList current = _route->output()->bundles_connected ();
@@ -743,7 +744,7 @@ MixerStrip::output_press (GdkEventButton *ev)
maybe_add_bundle_to_output_menu ((*i)->input()->bundle(), current);
}
- if (citems.size() == 2) {
+ if (citems.size() == n_with_separator) {
/* no routes added; remove the separator */
citems.pop_back ();
}
@@ -838,6 +839,8 @@ MixerStrip::input_press (GdkEventButton *ev)
}
citems.push_back (SeparatorElem());
+ uint32_t const n_with_separator = citems.size ();
+
input_menu_bundles.clear ();
ARDOUR::BundleList current = _route->input()->bundles_connected ();
@@ -865,7 +868,7 @@ MixerStrip::input_press (GdkEventButton *ev)
maybe_add_bundle_to_input_menu ((*i)->output()->bundle(), current);
}
- if (citems.size() == 2) {
+ if (citems.size() == n_with_separator) {
/* no routes added; remove the separator */
citems.pop_back ();
}