DolphinWX: Fix window growing on every relaunch

Fixes part of #8993 -- the window would grow slightly on every re-launch
because the size was set before the UI was fully initialized.
This commit is contained in:
Matt Mastracci 2016-01-08 11:51:05 -07:00
parent e8e0ad3e52
commit 560769ad5d
1 changed files with 3 additions and 0 deletions

View File

@ -469,6 +469,9 @@ CFrame::CFrame(wxFrame* parent,
ToggleLogConfigWindow(true);
}
// Set the size of the window after the UI has been built, but before we show it
SetSize(size);
// Show window
Show();