Check consistency of refer-to-DCP settings after adding content (#1456).
[dcpomatic.git] / src / tools / dcpomatic.cc
index 2e8a595ad206cf1fd778afab8123df15a5397f6b..db3d2205215bbe5cbaa344239ad5809a081d6221 100644 (file)
@@ -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) {