We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c29d1d0 + d76ded3 commit f2e2a45Copy full SHA for f2e2a45
UnityLauncherPro/Tools.cs
@@ -857,7 +857,7 @@ public static string BrowseForOutputFolder(string title)
857
// https://stackoverflow.com/a/50261723/5452781
858
// Create a "Save As" dialog for selecting a directory (HACK)
859
var dialog = new Microsoft.Win32.SaveFileDialog();
860
- dialog.InitialDirectory = "c:"; // Use current value for initial dir
+ //dialog.InitialDirectory = "c:"; // Use current value for initial dir
861
dialog.Title = title;
862
dialog.Filter = "Project Folder|*.Folder"; // Prevents displaying files
863
dialog.FileName = "Project"; // Filename will then be "select.this.directory"
0 commit comments