Skip to content
Snippets Groups Projects
Commit 0eb59048 authored by rswindell's avatar rswindell
Browse files

Processes window messages while delaying 3 seconds before auto-display of

configuration wizard.
parent cc97c095
No related branches found
No related tags found
No related merge requests found
......@@ -1633,7 +1633,10 @@ void __fastcall TMainForm::StartupTimerTick(TObject *Sender)
if(cfg.new_install) {
Application->BringToFront();
Sleep(3000); // Let 'em see the logo for a bit
for(int i=0;i<10;i++) {
Application->ProcessMessages();
Sleep(300); // Let 'em see the logo for a bit
}
BBSConfigWizardMenuItemClick(Sender);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment