Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion UnityLauncherPro/Tools.cs
Original file line number Diff line number Diff line change
Expand Up @@ -857,7 +857,7 @@ public static string BrowseForOutputFolder(string title)
// https://stackoverflow.com/a/50261723/5452781
// Create a "Save As" dialog for selecting a directory (HACK)
var dialog = new Microsoft.Win32.SaveFileDialog();
dialog.InitialDirectory = "c:"; // Use current value for initial dir
//dialog.InitialDirectory = "c:"; // Use current value for initial dir
dialog.Title = title;
dialog.Filter = "Project Folder|*.Folder"; // Prevents displaying files
dialog.FileName = "Project"; // Filename will then be "select.this.directory"
Expand Down