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:53 +0000 (21:19 +0100)
src/tools/dcpomatic.cc

index e4d2f5c824f033c7fa31d88236bfd37a09870e74..ae80a42da97c7e482d2bd926cdf3f63cc594f2af 100644 (file)
@@ -518,9 +518,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