Update configuration code to use the new configuration keys.

This commit is contained in:
efrick 2024-08-05 14:36:07 -04:00
parent 1d332927d6
commit 072e59bd4a

View File

@ -96,7 +96,15 @@ namespace PDF_Merge
private void outPathBtn_Click(object sender, EventArgs e)
{
using (var OutPathPicker = new OpenFileDialog()) { }
using (var OutPathPicker = new FolderBrowserDialog())
{
OutPathPicker.RootFolder = Environment.SpecialFolder.Desktop;
if (OutPathPicker.ShowDialog() == DialogResult.OK)
{
var OutPath = OutPathPicker.SelectedPath;
outputBox.Text = OutPath;
}
}
}
}
}