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:
parent
e8e0ad3e52
commit
560769ad5d
|
@ -469,6 +469,9 @@ CFrame::CFrame(wxFrame* parent,
|
||||||
ToggleLogConfigWindow(true);
|
ToggleLogConfigWindow(true);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Set the size of the window after the UI has been built, but before we show it
|
||||||
|
SetSize(size);
|
||||||
|
|
||||||
// Show window
|
// Show window
|
||||||
Show();
|
Show();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue