mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-11 01:08:39 +12:00
Swapped buttons positions in about dialog
It's much more intuitive (and common) to have OK in the bottom-right corner.
This commit is contained in:
parent
f272171099
commit
ee2940c159
1 changed files with 2 additions and 2 deletions
|
@ -61,11 +61,11 @@ AboutDialog::AboutDialog(wxWindow *parent)
|
||||||
Connect(b_id_forum, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(AboutDialog::OpenForum));
|
Connect(b_id_forum, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(AboutDialog::OpenForum));
|
||||||
|
|
||||||
s_panel_buttons->AddSpacer(12);
|
s_panel_buttons->AddSpacer(12);
|
||||||
s_panel_buttons->Add(new wxButton(this, wxID_OK), wxLEFT, 0, 5);
|
|
||||||
s_panel_buttons->AddSpacer(218);
|
|
||||||
s_panel_buttons->Add(b_website, wxLEFT, 0, 5);
|
s_panel_buttons->Add(b_website, wxLEFT, 0, 5);
|
||||||
s_panel_buttons->AddSpacer(5);
|
s_panel_buttons->AddSpacer(5);
|
||||||
s_panel_buttons->Add(b_forum, wxLEFT, 0, 5);
|
s_panel_buttons->Add(b_forum, wxLEFT, 0, 5);
|
||||||
|
s_panel_buttons->AddSpacer(218);
|
||||||
|
s_panel_buttons->Add(new wxButton(this, wxID_OK), wxLEFT, 0, 5);
|
||||||
s_panel_buttons->AddSpacer(12);
|
s_panel_buttons->AddSpacer(12);
|
||||||
|
|
||||||
//Panels
|
//Panels
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue