summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-07-12 23:38:49 +0100
committerCarl Hetherington <cth@carlh.net>2015-07-12 23:38:49 +0100
commit72a003a75be25245dfd5a9db9283cc77e849de02 (patch)
treec6c0d9fb78954e757e33f97177724a3105b17208 /src
parentece5cca1776fc6283d3078a80ea9f6bb8c987231 (diff)
Fix download button label.
Diffstat (limited to 'src')
-rw-r--r--src/wx/screen_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/screen_dialog.cc b/src/wx/screen_dialog.cc
index 8285ddb96..5f676bda7 100644
--- a/src/wx/screen_dialog.cc
+++ b/src/wx/screen_dialog.cc
@@ -44,7 +44,7 @@ ScreenDialog::ScreenDialog (wxWindow* parent, string title, string name, optiona
add (_("Certificate"), true);
wxBoxSizer* s = new wxBoxSizer (wxHORIZONTAL);
_load_certificate = new wxButton (this, wxID_ANY, _("Load from file..."));
- _download_certificate = new wxButton (this, wxID_ANY, _("Download"));
+ _download_certificate = new wxButton (this, wxID_ANY, _("Download..."));
s->Add (_load_certificate, 1, wxEXPAND);
s->Add (_download_certificate, 1, wxEXPAND);
add (s);