From: Carl Hetherington Date: Sun, 28 Nov 2021 20:41:06 +0000 (+0100) Subject: Fix some truncated headings. X-Git-Tag: v2.15.178~8 X-Git-Url: https://main.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=b0e863770782b701162075d01eceda60566b7eef Fix some truncated headings. --- diff --git a/src/wx/config_dialog.cc b/src/wx/config_dialog.cc index 1bd5036e7..53c67d101 100644 --- a/src/wx/config_dialog.cc +++ b/src/wx/config_dialog.cc @@ -690,7 +690,7 @@ KeysPage::setup () { auto m = new StaticText (_panel, _("Decrypting KDMs")); m->SetFont (subheading_font); - sizer->Add (m, 0, wxALL, _border); + sizer->Add (m, 0, wxALL | wxEXPAND, _border); } auto buttons = new wxBoxSizer (wxVERTICAL); @@ -714,7 +714,7 @@ KeysPage::setup () { auto m = new StaticText (_panel, _("Signing DCPs and KDMs")); m->SetFont (subheading_font); - sizer->Add (m, 0, wxALL, _border); + sizer->Add (m, 0, wxALL | wxEXPAND, _border); } auto signing_advanced = new Button (_panel, _("Advanced..."));