From 2f1899d5dd120e613671eded3c6ad9cedeb06598 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 22 Jan 2017 19:47:52 +0100 Subject: [PATCH] PresentationInfo needs to emit Change for selection/hide/order --- libs/ardour/presentation_info.cc | 3 +++ 1 file changed, 3 insertions(+) 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 */ } }