summaryrefslogtreecommitdiff
path: root/libs/ardour/presentation_info.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2017-01-22 19:47:52 +0100
committerPaul Davis <paul@linuxaudiosystems.com>2017-01-22 19:49:40 +0100
commit2f1899d5dd120e613671eded3c6ad9cedeb06598 (patch)
treebfa8468249d0d44a959e0e5bda4bc005a702477b /libs/ardour/presentation_info.cc
parentdb981b6085d3557d82178d003368905b48608ff0 (diff)
PresentationInfo needs to emit Change for selection/hide/order
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 */
}
}