X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fwx%2Fdownload_certificate_dialog.cc;h=abb1e61260aa7bf8ace8451317c8dcc6e822057d;hb=5d1268d50be8dc073430bdb202eda29305e7a19a;hp=bd3841f193205491c995382d6bbff35fdad7bb54;hpb=41b7a04cf3dedaa93aaf3c050db7a693281417f7;p=dcpomatic.git 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 @@ -36,11 +36,13 @@ DownloadCertificateDialog::add_common_widgets () add_spacer (); _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);