Save last export setting

This commit is contained in:
blitzmann
2018-08-25 19:01:49 -04:00
parent ebe0efac81
commit c530660132
3 changed files with 18 additions and 5 deletions

View File

@@ -752,6 +752,11 @@ class MainFrame(wx.Frame):
dlg.ShowModal()
selected = dlg.GetSelected()
options = dlg.GetOptions()
settings = SettingsProvider.getInstance().getSettings("pyfaExport")
settings["format"] = selected
settings["options"] = options
CopySelectDict[selected](options)
try: