summaryrefslogtreecommitdiff
path: root/src/wx/download_certificate_dialog.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-03-26 20:53:02 +0000
committerCarl Hetherington <cth@carlh.net>2014-03-26 20:53:02 +0000
commit4438476ea07f171ef4909f0882b490dfcfb7094c (patch)
treedc97155b76965cf7b7b5bedf7efa2389fb94c793 /src/wx/download_certificate_dialog.cc
parent41b7a04cf3dedaa93aaf3c050db7a693281417f7 (diff)
Some more certificate download improvements.
Diffstat (limited to 'src/wx/download_certificate_dialog.cc')
-rw-r--r--src/wx/download_certificate_dialog.cc8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/wx/download_certificate_dialog.cc b/src/wx/download_certificate_dialog.cc
index bd3841f19..abb1e6126 100644
--- a/src/wx/download_certificate_dialog.cc
+++ b/src/wx/download_certificate_dialog.cc
@@ -37,10 +37,12 @@ DownloadCertificateDialog::add_common_widgets ()
_download = add (new wxButton (this, wxID_ANY, _("Download")));
add_spacer ();
- _gauge = add (new wxGauge (this, wxID_ANY, 100));
-
- add_spacer ();
_message = add (new wxStaticText (this, wxID_ANY, wxT ("")));
+
+ wxFont font = _message->GetFont();
+ font.SetStyle (wxFONTSTYLE_ITALIC);
+ font.SetPointSize (font.GetPointSize() - 1);
+ _message->SetFont (font);
_download->Bind (wxEVT_COMMAND_BUTTON_CLICKED, boost::bind (&DownloadCertificateDialog::download, this));
_download->Enable (false);