diff options
Diffstat (limited to 'Program.cs')
-rw-r--r-- | Program.cs | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -22,6 +22,7 @@ namespace BCDD {
OpenFileDialog fd = new OpenFileDialog();
fd.Multiselect = true;
+ fd.Filter = "PBN files (*.pbn)|*.pbn|All files (*.*)|*.*";
if (fd.ShowDialog() == DialogResult.OK)
{
filenames = new List<String>(fd.FileNames);
|