summaryrefslogtreecommitdiff
path: root/libs/ardour/presentation_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'libs/ardour/presentation_info.cc')
-rw-r--r--libs/ardour/presentation_info.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/libs/ardour/presentation_info.cc b/libs/ardour/presentation_info.cc
index 8139689649..a44f5f4a8b 100644
--- a/libs/ardour/presentation_info.cc
+++ b/libs/ardour/presentation_info.cc
@@ -189,6 +189,7 @@ PresentationInfo::set_selected (bool yn)
_flags = Flag (_flags & ~Selected);
}
send_change (PropertyChange (Properties::selected));
+ Change (); /* EMIT SIGNAL */
}
}
@@ -204,6 +205,7 @@ PresentationInfo::set_hidden (bool yn)
}
send_change (PropertyChange (Properties::hidden));
+ Change (); /* EMIT SIGNAL */
}
}
@@ -215,6 +217,7 @@ PresentationInfo::set_order (order_t order)
if (order != _order) {
_order = order;
send_change (PropertyChange (Properties::order));
+ Change (); /* EMIT SIGNAL */
}
}