Fix output browse init dir

This commit is contained in:
n00mkrad 2023-02-21 12:03:48 +01:00
parent 2b864393a7
commit 07020401d8
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ namespace Flowframes.Forms.Main
private void browseOutBtn_Click(object sender, EventArgs e)
{
CommonOpenFileDialog dialog = new CommonOpenFileDialog { InitialDirectory = inputTbox.Text.Trim(), IsFolderPicker = true };
CommonOpenFileDialog dialog = new CommonOpenFileDialog { InitialDirectory = outputTbox.Text.Trim(), IsFolderPicker = true };
if (dialog.ShowDialog() == CommonFileDialogResult.Ok)
outputTbox.Text = dialog.FileName;