From b5a8217fcd41e9eebedefd51ff233b8c91f94349 Mon Sep 17 00:00:00 2001 From: Thomas Goyne Date: Tue, 25 Mar 2014 07:34:15 -0700 Subject: [PATCH] Remove pointless wxSafeYield in FrameMain's constructor This was needed to make the splash screen appear, and was missed when the splash screen was killed. --- src/frame_main.cpp | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/frame_main.cpp b/src/frame_main.cpp index 261e605d8..3b60b1e55 100644 --- a/src/frame_main.cpp +++ b/src/frame_main.cpp @@ -233,9 +233,6 @@ FrameMain::FrameMain() StartupLog("Install PNG handler"); wxImage::AddHandler(new wxPNGHandler); -#ifndef __APPLE__ - wxSafeYield(); -#endif StartupLog("Apply saved Maximized state"); if (OPT_GET("App/Maximized")->GetBool()) Maximize(true);