Skip to content

Commit b8782ee

Browse files
committed
Update MainForm.cs
1 parent 87d23bb commit b8782ee

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Hashing/Forms/MainForm.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1334,13 +1334,13 @@ private void btnBrowse_Click(object sender, EventArgs e)
13341334
{
13351335
OpenFileDialog dialog = new OpenFileDialog();
13361336
dialog.Filter = "All files|*.*";
1337-
dialog.Multiselect = false;
1337+
dialog.Multiselect = true;
13381338
dialog.CheckFileExists = true;
13391339
dialog.CheckPathExists = true;
13401340

13411341
if (dialog.ShowDialog() == DialogResult.OK)
13421342
{
1343-
DetectFiles(new string[] { dialog.FileName });
1343+
DetectFiles(dialog.FileNames);
13441344
}
13451345
}
13461346

0 commit comments

Comments
 (0)