From 5edb2bfea1f7e5c321bc49e3f48076e3ad9f0732 Mon Sep 17 00:00:00 2001 From: Chris Burgener Date: Mon, 5 Oct 2015 13:36:53 -0400 Subject: [PATCH] Fix wxWidgets Error in About Window --- Source/Core/DolphinWX/AboutDolphin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/AboutDolphin.cpp b/Source/Core/DolphinWX/AboutDolphin.cpp index 9b6077e02f..f708f60716 100644 --- a/Source/Core/DolphinWX/AboutDolphin.cpp +++ b/Source/Core/DolphinWX/AboutDolphin.cpp @@ -128,7 +128,7 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id, wxBoxSizer* const sFooter = new wxBoxSizer(wxVERTICAL); sFooter->AddSpacer(15); - sFooter->Add(Copyright, 0, wxALIGN_BOTTOM | wxALIGN_CENTER); + sFooter->Add(Copyright, 0, wxALIGN_BOTTOM | wxALIGN_CENTER_HORIZONTAL); sFooter->AddSpacer(5); wxBoxSizer* const sMain = new wxBoxSizer(wxVERTICAL);