Add a warning message about Windows controlled folder access.
authorCarl Hetherington <cth@carlh.net>
Mon, 11 Nov 2019 20:19:28 +0000 (20:19 +0000)
committerCarl Hetherington <cth@carlh.net>
Mon, 11 Nov 2019 20:19:28 +0000 (20:19 +0000)
src/tools/dcpomatic.cc

index c35f7f09e354207318474e5e6c200d0175841ef0..26b4946b5ed6250a298a557e1d30d9bd27e0ac86 100644 (file)
@@ -513,9 +513,11 @@ private:
                                        }
                                }
                                wxString message = _("Could not create folder to store film.");
+                               message += "  ";
                                if (!found_bad_chars.empty()) {
-                                       message += "  ";
                                        message += wxString::Format (_("Try removing the %s characters from your folder name."), std_to_wx(found_bad_chars).data());
+                               } else {
+                                       message += _("Please check that you do not have Windows controlled folder access enabled for DCP-o-matic.");
                                }
                                error_dialog (this, message, std_to_wx(e.what()));
 #else