Skip to content

Commit 3c08479

Browse files
committed
Fixed a bit error when saving a file.
1 parent 1ea3289 commit 3c08479

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

WindowTextExtractor/Forms/MainForm.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ private void menuItemSaveFileAs_Click(object sender, EventArgs e)
126126
FileName = File.Exists(_fileName) ? Path.GetFileName(_fileName) : "*.txt",
127127
DefaultExt = "txt",
128128
RestoreDirectory = false,
129-
Filter = "Text Documents (.txt)|*.txt"
129+
Filter = "Text Documents (*.txt)|*.txt|All Files (*.*)|*.*"
130130
};
131131

132132
if (dialog.ShowDialog() != System.Windows.Forms.DialogResult.Cancel)

0 commit comments

Comments
 (0)