Skip to content

Commit c26f8f0

Browse files
author
Benoit Hudson
committed
Provide a message to the success dialog.
On Windows you need one or it looks weird.
1 parent 25c281f commit c26f8f0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Assets/FbxExporters/Editor/InstallIntegration.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -505,11 +505,11 @@ public static void OnMenuItem1 ()
505505

506506
string title, message;
507507
if (exitCode != 0) {
508-
title = string.Format("Failed to install Maya{0} Integration", mayaVersion.Version);
509-
message = string.Format("Failed to configure Maya, please check logs (exitcode={0})", exitCode);
508+
title = string.Format("Failed to install Maya {0} Integration.", mayaVersion.Version);
509+
message = string.Format("Failed to configure Maya, please check logs (exitcode={0}).", exitCode);
510510
} else {
511-
title = string.Format("Completed installation of Maya{0} Integration.", mayaVersion.Version);
512-
message = "";
511+
title = string.Format("Completed installation of Maya {0} Integration.", mayaVersion.Version);
512+
message = string.Format("Enjoy the new \"Unity\" menu in Maya {0}.", mayaVersion.Version);
513513
}
514514
UnityEditor.EditorUtility.DisplayDialog (title, message, "Ok");
515515
}

0 commit comments

Comments
 (0)