Perfected the PadSimple config design.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@697 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
XTra.KrazzY 2008-09-25 21:16:32 +00:00
parent bead0e1950
commit fa6a7a2242
1 changed files with 2 additions and 2 deletions

View File

@ -89,9 +89,9 @@ inline void AddControl(wxPanel *pan, wxButton **button, wxStaticBoxSizer *sizer,
*button = new wxButton(pan, ctl, wxString::FromAscii(keyStr),
wxDefaultPosition, wxDefaultSize, wxWANTS_CHARS);
hButton->Add(*button, 0, wxALL);
hButton->Add(*button, 0, wxALIGN_RIGHT|wxALL);
sizer->Add(hButton);
sizer->Add(hButton, 0, wxALIGN_RIGHT|wxALL);
}
void ConfigDialog::CreateGUIControls()