Record Movie dialog - fix bug where user selection in SaveFileDialog was not updating the filename textbox
This commit is contained in:
parent
a534c7b221
commit
d44649bf82
|
@ -216,7 +216,7 @@ namespace BizHawk.Client.EmuHawk
|
||||||
if (result == DialogResult.OK
|
if (result == DialogResult.OK
|
||||||
&& !String.IsNullOrWhiteSpace(sfd.FileName))
|
&& !String.IsNullOrWhiteSpace(sfd.FileName))
|
||||||
{
|
{
|
||||||
RecordBox.Text = filename;
|
RecordBox.Text = sfd.FileName;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue