summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2021-11-28 21:41:06 +0100
committerCarl Hetherington <cth@carlh.net>2021-11-28 21:41:06 +0100
commit73ece0c95ddd5c0d7fd37931ccdc589f261d80a9 (patch)
treeec87ae4a2a0642d3dbff251bb88f8b0bf6678368
parentc8966336f48c4de7222a97c23eccad24fab45121 (diff)
Fix some truncated headings.
-rw-r--r--src/wx/config_dialog.cc4
1 files changed, 2 insertions, 2 deletions
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..."));