summaryrefslogtreecommitdiff
path: root/src/tools
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2019-01-31 17:04:18 +0000
committerCarl Hetherington <cth@carlh.net>2019-01-31 17:04:18 +0000
commit9fa17d52810490359f899cc0cbdb4c25ac74bc92 (patch)
tree6e23785f15a9438d884af3a174bdb966e69f7a8c /src/tools
parent2eeb503962f31665a19bee24e2e46840f7086f33 (diff)
Check consistency of refer-to-DCP settings after adding content (#1456).
Diffstat (limited to 'src/tools')
-rw-r--r--src/tools/dcpomatic.cc6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc
index 2e8a595ad..db3d22052 100644
--- a/src/tools/dcpomatic.cc
+++ b/src/tools/dcpomatic.cc
@@ -457,6 +457,7 @@ public:
}
if (_film) {
_film->Change.connect (boost::bind (&DOMFrame::film_change, this, _1));
+ _film->Message.connect (boost::bind(&DOMFrame::film_message, this, _1));
}
}
@@ -466,6 +467,11 @@ public:
private:
+ void film_message (string m)
+ {
+ message_dialog (this, std_to_wx(m));
+ }
+
void film_change (ChangeType type)
{
if (type == CHANGE_TYPE_DONE) {