Skip to content

Commit

Permalink
Use proper file name in save dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
AyrA committed Jan 11, 2021
1 parent 85e6f37 commit 4c7339b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fcfh/frmMain.cs
Original file line number Diff line number Diff line change
Expand Up @@ -415,7 +415,7 @@ private void btnDecodeStart_Click(object sender, EventArgs e)
}
if (Data != null)
{
var FN = Path.Combine(Path.GetDirectoryName(tbDecodeInput.Text), Header.FileName);
var FN = Path.Combine(Path.GetDirectoryName(tbDecodeInput.Text), IF.FileName);
FN = Tools.BrowseFile("Save As...", Preselected: FN, IsSave: true);
if (!string.IsNullOrEmpty(FN))
{
Expand Down

0 comments on commit 4c7339b

Please sign in to comment.