Merge pull request #33763 from neikeq/issue-33725

Fix C# export error dialog showing up when it should not
This commit is contained in:
Rémi Verschelde 2019-11-20 13:23:20 +01:00 committed by GitHub
commit 73323a2838
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -164,12 +164,12 @@ namespace GodotTools.Export
Directory.Delete(aotTempDir, recursive: true);
// TODO: Just a workaround until the export plugins can be made to abort with errors
if (string.IsNullOrEmpty(maybeLastExportError)) // Check empty as well, because it's set to empty after hot-reloading
if (!string.IsNullOrEmpty(maybeLastExportError)) // Check empty as well, because it's set to empty after hot-reloading
{
string lastExportError = maybeLastExportError;
maybeLastExportError = null;
GodotSharpEditor.Instance.ShowErrorDialog(lastExportError, "C# export failed");
GodotSharpEditor.Instance.ShowErrorDialog(lastExportError, "Failed to export C# project");
}
}