From d68653a34d9556af6304109676e3ccfcb8cc3029 Mon Sep 17 00:00:00 2001 From: WrinklyNinja Date: Mon, 10 Feb 2014 15:36:36 +0000 Subject: [PATCH] Fixed text formatting in mini editor. --- src/gui/editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/editor.cpp b/src/gui/editor.cpp index fce117dd..8f8f313c 100644 --- a/src/gui/editor.cpp +++ b/src/gui/editor.cpp @@ -222,7 +222,7 @@ MiniEditor::MiniEditor(wxWindow *parent, const wxString& title, const std::list< hBox->Add(editingPanel, 1, wxEXPAND | wxTOP | wxBOTTOM | wxRIGHT, 10); bigBox->Add(hBox, 1, wxEXPAND | wxALL, 5); - bigBox->Add(new wxStaticText(this, wxID_ANY, translate("Do you want to set the load order given above?"))); + bigBox->Add(new wxStaticText(this, wxID_ANY, translate("Do you want to apply the load order given above?")), 0, wxLEFT|wxRIGHT|wxBOTTOM, 15); //Need to add 'Yes' and 'No' buttons. wxSizer * sizer = CreateSeparatedButtonSizer(wxAPPLY | wxCANCEL);