From 85aa96d7ffb3123bca784bedda320c59c0c13fae Mon Sep 17 00:00:00 2001 From: Taylor Richards Date: Sat, 26 Mar 2016 19:00:19 -0400 Subject: [PATCH] remove invalid alignment flag on help window button --- src/launcher/launcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/launcher/launcher.cpp b/src/launcher/launcher.cpp index 01cd67e..7a97c96 100644 --- a/src/launcher/launcher.cpp +++ b/src/launcher/launcher.cpp @@ -380,7 +380,7 @@ void Launcher::OnHelp( wxCommandEvent& WXUNUSED(event) ) bSizer->Add( m_help_txt, 0, wxALL|wxEXPAND, 5 ); wxButton *m_b_Ok = new wxButton( help, wxID_OK, wxEmptyString, wxDefaultPosition, wxDefaultSize, 0 ); - bSizer->Add( m_b_Ok, 0, wxALIGN_BOTTOM|wxALIGN_RIGHT|wxALL, 5 ); + bSizer->Add( m_b_Ok, 0, wxALIGN_RIGHT|wxALL, 5 ); help->SetSizer( bSizer ); help->Layout(); -- 2.39.2