Add a warning message about Windows controlled folder access.
[dcpomatic.git] / 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