From 3252503eaa0f1b57514fa6d27350da390937573c Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 14 Feb 2012 00:35:25 +0000 Subject: [PATCH] Check for updates after loading files passed on the command line as the update checker dialog interacts poorly with the loading modal dialogs Originally committed to SVN as r6470. --- aegisub/src/frame_main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/aegisub/src/frame_main.cpp b/aegisub/src/frame_main.cpp index 9eea6e2d0..0cbf65130 100644 --- a/aegisub/src/frame_main.cpp +++ b/aegisub/src/frame_main.cpp @@ -204,6 +204,9 @@ FrameMain::FrameMain (wxArrayString args) Show(); SetDisplayMode(1, 1); + StartupLog("Load files specified on command line"); + LoadList(args); + // Version checker StartupLog("Possibly perform automatic updates check"); if (OPT_GET("App/First Start")->GetBool()) { @@ -214,9 +217,6 @@ FrameMain::FrameMain (wxArrayString args) PerformVersionCheck(false); - StartupLog("Load files specified on command line"); - LoadList(args); - StartupLog("Leaving FrameMain constructor"); }