Fix crash on startup when the config file can't be written

This commit is contained in:
Thomas Goyne 2014-03-18 14:03:36 -07:00
parent 526b670120
commit 0cc7254210
1 changed files with 6 additions and 1 deletions

View File

@ -283,7 +283,12 @@ FrameMain::FrameMain()
#ifdef WITH_UPDATE_CHECKER
int result = wxMessageBox(_("Do you want Aegisub to check for updates whenever it starts? You can still do it manually via the Help menu."),_("Check for updates?"), wxYES_NO | wxCENTER);
OPT_SET("App/Auto/Check For Updates")->SetBool(result == wxYES);
config::opt->Flush();
try {
config::opt->Flush();
}
catch (agi::fs::FileSystemError const& e) {
wxMessageBox(to_wx(e.GetMessage()), "Error saving config file", wxOK | wxICON_ERROR | wxCENTER);
}
#endif
}