mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
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
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue