mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-22 13:49:53 -06:00
HotkeyInputConfigDiag: set DeviceRelatedSizer to wxEXPAND
Somehow it acts as though it has wxEXPAND, but that stops working if the code is edited (as in the next commit).
This commit is contained in:
@ -30,7 +30,7 @@ wxBoxSizer* HotkeyInputConfigDialog::CreateMainSizer()
|
||||
auto* const main_sizer = new wxBoxSizer(wxVERTICAL);
|
||||
|
||||
main_sizer->AddSpacer(space5);
|
||||
main_sizer->Add(CreateDeviceRelatedSizer());
|
||||
main_sizer->Add(CreateDeviceRelatedSizer(), 0, wxEXPAND | wxLEFT | wxRIGHT);
|
||||
main_sizer->AddSpacer(space5);
|
||||
main_sizer->Add(m_notebook, 1, wxEXPAND | wxLEFT | wxRIGHT, space5);
|
||||
main_sizer->AddSpacer(space5);
|
||||
|
Reference in New Issue
Block a user