summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorSimon McFarlane <simon@piston.pw>2015-04-30 17:32:45 -0700
committerSimon McFarlane <simon@piston.pw>2015-04-30 17:32:45 -0700
commite6e046e37cdd7b677dfe5bbaea99dd5e20ae4f8f (patch)
tree147c7f8a27cc1478d6abcf9a0a9f9800f6af7826 /Source/Core
parentdf341ffba6fdbc2cbd489dfa0df25a4b87e8533e (diff)
Make revision text wxStaticText
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/DolphinWX/AboutDolphin.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/AboutDolphin.cpp b/Source/Core/DolphinWX/AboutDolphin.cpp
index 61d2f27e08..105275141d 100644
--- a/Source/Core/DolphinWX/AboutDolphin.cpp
+++ b/Source/Core/DolphinWX/AboutDolphin.cpp
@@ -75,8 +75,8 @@ AboutDolphin::AboutDolphin(wxWindow *parent, wxWindowID id,
const wxString SupportText = _("Support");
wxStaticText* const Dolphin = new wxStaticText(this, wxID_ANY, DolphinText);
- wxTextCtrl* const Revision = new wxTextCtrl(this, wxID_ANY, RevisionText, wxDefaultPosition, wxDefaultSize, wxNO_BORDER | wxTE_READONLY | wxTE_NO_VSCROLL);
- BanishBackground(Revision);
+ wxStaticText* const Revision = new wxStaticText(this, wxID_ANY, RevisionText);
+
wxStaticText* const Copyright = new wxStaticText(this, wxID_ANY, CopyrightText);
wxStaticText* const Branch = new wxStaticText(this, wxID_ANY, BranchText + "\n" + BranchRevText + "\n" + CompiledText+"\n");
wxStaticText* const Message = new wxStaticText(this, wxID_ANY, Text);