summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorSimon McFarlane <simon@piston.pw>2015-04-30 17:22:37 -0700
committerSimon McFarlane <simon@piston.pw>2015-04-30 17:22:37 -0700
commitdf341ffba6fdbc2cbd489dfa0df25a4b87e8533e (patch)
tree83b1f5c0f2ad5fe8956acf8ff37b13bf495717d9 /Source/Core
parentad6ed9a6bce5f52a9c6fb6588d93b4cd7a406ac9 (diff)
Change about page branch info to wxStaticText
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/AboutDolphin.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/Source/Core/DolphinWX/AboutDolphin.cpp b/Source/Core/DolphinWX/AboutDolphin.cpp
index 2adb9823e0..61d2f27e08 100644
--- a/Source/Core/DolphinWX/AboutDolphin.cpp
+++ b/Source/Core/DolphinWX/AboutDolphin.cpp
@@ -78,8 +78,7 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
wxTextCtrl* const Revision = new wxTextCtrl(this, wxID_ANY, RevisionText, wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxTE_READONLY | wxTE_NO_VSCROLL);
BanishBackground(Revision);
wxStaticText* const Copyright = new wxStaticText(this, wxID_ANY, CopyrightText);
- wxTextCtrl* const Branch = new wxTextCtrl(this, wxID_ANY, "", wxDefaultPosition, wxSize(300, 50), wxNO_BORDER | wxTE_READONLY | wxTE_MULTILINE | wxTE_NO_VSCROLL);
- BanishBackground(Branch);
+ wxStaticText* const Branch = new wxStaticText(this, wxID_ANY, BranchText + "\n" + BranchRevText + "\n" + CompiledText+"\n");
wxStaticText* const Message = new wxStaticText(this, wxID_ANY, Text);
wxStaticText* const UpdateText = new wxStaticText(this, wxID_ANY, CheckUpdateText);
wxStaticText* const FirstSpacer = new wxStaticText(this, wxID_ANY, " | ");
@@ -102,9 +101,6 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
BranchFont.SetPointSize(7);
Branch->SetFont(BranchFont);
- Branch->AppendText(BranchText + "\n");
- Branch->AppendText(BranchRevText + "\n");
- Branch->AppendText(CompiledText);
CopyrightFont.SetPointSize(7);
Copyright->SetFont(CopyrightFont);