From c94bc8dcdab9833f31900a7b7b3ec1bb01e339bd Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Sun, 11 Jun 2023 13:28:47 +1000 Subject: [PATCH] batch: Added import any file type --- FireWallet/BatchForm.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FireWallet/BatchForm.cs b/FireWallet/BatchForm.cs index 8a9a132..e79e7fb 100644 --- a/FireWallet/BatchForm.cs +++ b/FireWallet/BatchForm.cs @@ -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) {