batch: Added import any file type

This commit is contained in:
Nathan Woodburn 2023-06-11 13:28:47 +10:00
parent 145047b614
commit c94bc8dcda
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -621,7 +621,7 @@ namespace FireWallet
private void buttonImport_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Filter = "CSV File|*.csv|TXT File|*.txt";
openFileDialog.Filter = "All Files|*.*";
openFileDialog.Title = "Open Batch";
if (openFileDialog.ShowDialog() == DialogResult.OK)
{