Skip to content

Commit dee6e5a

Browse files
committed
warning fix
1 parent 3903bc1 commit dee6e5a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

com.unity.perception/Editor/Visualizer/VisualizerInstaller.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -685,12 +685,12 @@ static async Task CheckForUpdates()
685685
var project = Application.dataPath;
686686
if (!CheckIfVisualizerInstalled(project))
687687
{
688-
if (EditorUtility.DisplayDialog("Visualizer not Installed",
688+
if (EditorUtility.DisplayDialog("Visualizer Not Installed",
689689
$"The visualizer is not yet installed, do you wish to install it?",
690690
"Install",
691691
"Cancel"))
692692
{
693-
SetupVisualizer();
693+
await SetupVisualizer();
694694
}
695695

696696
return;

0 commit comments

Comments
 (0)