From fc7164422cd3a15371decde4fc56c045e68f0fa3 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 15 May 2012 13:39:55 +0000 Subject: [PATCH] Flush options after asking the first-startup questions Originally committed to SVN as r6789. --- aegisub/src/frame_main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/aegisub/src/frame_main.cpp b/aegisub/src/frame_main.cpp index 44e8f4359..ca4033fdd 100644 --- a/aegisub/src/frame_main.cpp +++ b/aegisub/src/frame_main.cpp @@ -216,6 +216,7 @@ FrameMain::FrameMain (wxArrayString args) OPT_SET("App/First Start")->SetBool(false); 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(); } PerformVersionCheck(false);