Skip to content

Commit

Permalink
Swapped buttons positions in about dialog
Browse files Browse the repository at this point in the history
It's much more intuitive (and common) to have OK in the bottom-right
corner.
  • Loading branch information
danilaml authored and Nekotekina committed Jul 10, 2015
1 parent f272171 commit ee2940c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions rpcs3/Gui/AboutDialog.h
Original file line number Diff line number Diff line change
Expand Up @@ -61,11 +61,11 @@ AboutDialog::AboutDialog(wxWindow *parent)
Connect(b_id_forum, wxEVT_COMMAND_BUTTON_CLICKED, wxCommandEventHandler(AboutDialog::OpenForum));

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->AddSpacer(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);

//Panels
Expand Down

0 comments on commit ee2940c

Please sign in to comment.