From ee2940c159c3bf97526ccd964fa583c5815e5627 Mon Sep 17 00:00:00 2001 From: Danila Malyutin Date: Mon, 1 Jun 2015 01:13:18 +0300 Subject: [PATCH] Swapped buttons positions in about dialog It's much more intuitive (and common) to have OK in the bottom-right corner. --- rpcs3/Gui/AboutDialog.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Gui/AboutDialog.h b/rpcs3/Gui/AboutDialog.h index 78584d6d3d..4a0c6a9020 100644 --- a/rpcs3/Gui/AboutDialog.h +++ b/rpcs3/Gui/AboutDialog.h @@ -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