summaryrefslogtreecommitdiff
path: root/src/wx/content_panel.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2016-10-14 23:38:16 +0100
committerCarl Hetherington <cth@carlh.net>2016-10-14 23:38:16 +0100
commit8726c70cc1b14dc996c18670cdcda0b4d670605e (patch)
treead1b6f02f366c3c0aec275cf4b6fb6e0f8050402 /src/wx/content_panel.cc
parent19a66e2230f56cb84c17d1b00d34f2849f36f3e2 (diff)
Update content list when selected CPL changes in DCP content.
Diffstat (limited to 'src/wx/content_panel.cc')
-rw-r--r--src/wx/content_panel.cc8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/wx/content_panel.cc b/src/wx/content_panel.cc
index 7bea51687..ea1d50766 100644
--- a/src/wx/content_panel.cc
+++ b/src/wx/content_panel.cc
@@ -481,7 +481,13 @@ ContentPanel::set_selection (ContentList cl)
void
ContentPanel::film_content_changed (int property)
{
- if (property == ContentProperty::PATH || property == DCPContentProperty::NEEDS_ASSETS || property == DCPContentProperty::NEEDS_KDM) {
+ if (
+ property == ContentProperty::PATH ||
+ property == DCPContentProperty::NEEDS_ASSETS ||
+ property == DCPContentProperty::NEEDS_KDM ||
+ property == DCPContentProperty::NAME
+ ) {
+
setup ();
}