batch: Added import any file type

This commit is contained in:
2023-06-11 13:28:47 +10:00
parent 145047b614
commit c94bc8dcda

View File

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