when a Route is removed, don't bother triggering a sync-presentation-info-from-treeview because it isn't necessary

Also, don't update mixer selection unless selection actually changed
This commit is contained in:
Paul Davis
2017-05-08 10:33:37 +01:00
parent d51049f343
commit 8ddbbe427d

View File

@@ -673,6 +673,8 @@ Mixer_UI::remove_strip (MixerStrip* strip)
strips.erase (i);
}
PBD::Unwinder<bool> uwi (ignore_reorder, true);
for (ri = rows.begin(); ri != rows.end(); ++ri) {
if ((*ri)[stripable_columns.strip] == strip) {
PBD::Unwinder<bool> uw (_route_deletion_in_progress, true);
@@ -685,7 +687,11 @@ Mixer_UI::remove_strip (MixerStrip* strip)
void
Mixer_UI::presentation_info_changed (PropertyChange const & what_changed)
{
_selection.presentation_info_changed (what_changed);
cerr << ">>>> MUI::pic\n";
if (what_changed.contains (Properties::selected)) {
_selection.presentation_info_changed (what_changed);
}
PropertyChange soh;
soh.add (Properties::selected);