From 4965b5a78d6517a6fb4f15d2ebdbd305ca3e07ad Mon Sep 17 00:00:00 2001 From: "lllucius@gmail.com" Date: Mon, 4 Aug 2014 16:41:27 +0000 Subject: [PATCH] Fix bug #737. The problem was the the splash window was displayed when the FFmpeg warning dialog appeared. Just needed to hide it before deleting the window since the actual deletion is defered to some time later. --- src/AudacityApp.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/AudacityApp.cpp b/src/AudacityApp.cpp index 2cec8ee8f..e0277ca61 100644 --- a/src/AudacityApp.cpp +++ b/src/AudacityApp.cpp @@ -1246,6 +1246,7 @@ bool AudacityApp::OnInit() pWnd->Show( true ); } + temporarywindow->Show( false ); delete temporarywindow; if( project->mShowSplashScreen )