diff options
| author | Carl Hetherington <cth@carlh.net> | 2019-11-11 20:19:28 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2019-11-11 20:19:28 +0000 |
| commit | 59bc8df84149aeb3080dfb1df870c1d335ce746d (patch) | |
| tree | 39019cd5fa2b179f0b966c692abfe48a4b387c7c | |
| parent | 7ba3ca78ed35a9e6863311ad2bbac0bf9c5ebb85 (diff) | |
Add a warning message about Windows controlled folder access.
| -rw-r--r-- | src/tools/dcpomatic.cc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/dcpomatic.cc b/src/tools/dcpomatic.cc index c35f7f09e..26b4946b5 100644 --- a/src/tools/dcpomatic.cc +++ b/src/tools/dcpomatic.cc @@ -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 |
