Skip to content

Commit

Permalink
Allow all files in the Windows file dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Barringer committed Sep 18, 2012
1 parent 9217ec8 commit 396f67a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion windows/ImageWriter/MainWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ void WorkerDone(object sender, RunWorkerCompletedEventArgs e)
private void SelectImage(object sender, System.EventArgs e)
{
OpenFileDialog imageFileDialog = new OpenFileDialog();
imageFileDialog.Filter = "Image Files (*.raw, *.iso)|*.raw;*.iso";
imageFileDialog.Filter = "Image Files (*.raw, *.iso)|*.raw;*.iso|All files (*.*)|*.*";
imageFileDialog.RestoreDirectory = true;

if (imageFileDialog.ShowDialog() == DialogResult.OK)
Expand Down

0 comments on commit 396f67a

Please sign in to comment.