Update FieldItemEditor.cs

This commit is contained in:
Kurt
2021-01-23 23:52:24 -08:00
parent 2670a6c751
commit f427ca647e

View File

@@ -920,7 +920,7 @@ private void B_ExportPlacedDesigns_Click(object sender, EventArgs e)
{
using var sfd = new SaveFileDialog
{
Filter = "nhmd file (*.nhmd)",
Filter = "nhmd file (*.nhmd)|*.nhmd",
FileName = "Island MyDesignMap.nhmd",
};
if (sfd.ShowDialog() != DialogResult.OK)
@@ -936,7 +936,7 @@ private void B_ImportPlacedDesigns_Click(object sender, EventArgs e)
{
using var ofd = new OpenFileDialog
{
Filter = "nhmd file (*.nhmd)",
Filter = "nhmd file (*.nhmd)|*.nhmd",
FileName = "Island MyDesignMap.nhmd",
};
if (ofd.ShowDialog() != DialogResult.OK)