diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-11-28 21:41:06 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-11-28 21:42:15 +0100 |
| commit | b0e863770782b701162075d01eceda60566b7eef (patch) | |
| tree | d6f15e1f0b6caedcd884e3685cc0b45f6344873d /src | |
| parent | 94ab538738526948c5a52ed1222be1e484255541 (diff) | |
Fix some truncated headings.
Diffstat (limited to 'src')
| -rw-r--r-- | src/wx/config_dialog.cc | 4 |
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...")); |
