Skip to content

Commit

Permalink
Forgot to "remember" the file names after a save
Browse files Browse the repository at this point in the history
  • Loading branch information
robincornelius committed Dec 6, 2016
1 parent 17ccf2b commit b20bbf8
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions EDSTest/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,7 @@ private void saveEDSToolStripMenuItem_Click(object sender, EventArgs e)
if (sfd.ShowDialog() == DialogResult.OK)
{
dv.eds.savefile(sfd.FileName);
dv.eds.edsfilename = sfd.FileName;
}

}
Expand Down Expand Up @@ -388,6 +389,7 @@ private void saveProjectXMLToolStripMenuItem_Click(object sender, EventArgs e)

coxml.writeXML(sfd.FileName);

dv.eds.xmlfilename = sfd.FileName;
dv.eds.dirty = false;

}
Expand Down

0 comments on commit b20bbf8

Please sign in to comment.