mirror of
https://github.com/n00mkrad/flowframes.git
synced 2025-12-21 10:49:25 +01:00
Fix output browse init dir
This commit is contained in:
@@ -372,7 +372,7 @@ namespace Flowframes.Forms.Main
|
|||||||
|
|
||||||
private void browseOutBtn_Click(object sender, EventArgs e)
|
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)
|
if (dialog.ShowDialog() == CommonFileDialogResult.Ok)
|
||||||
outputTbox.Text = dialog.FileName;
|
outputTbox.Text = dialog.FileName;
|
||||||
|
|||||||
Reference in New Issue
Block a user