summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2023-02-05 16:53:58 +0100
committerCarl Hetherington <cth@carlh.net>2023-02-05 16:53:58 +0100
commitaeea3b5b99e0ce3a4491a16e6cb1588b70873cf2 (patch)
treeca73939e1649bc63bbd4d7bce80b12f209102818
parentf3f4fac3834aa5f81f92cb63e0c5ca2b18f3339d (diff)
Slightly improve alignment (still not right though).
-rw-r--r--src/wx/full_config_dialog.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/full_config_dialog.cc b/src/wx/full_config_dialog.cc
index 7aea87c73..b7f87fe7a 100644
--- a/src/wx/full_config_dialog.cc
+++ b/src/wx/full_config_dialog.cc
@@ -1556,7 +1556,7 @@ private:
_allow_any_container = new CheckBox (_panel, _("Allow full-frame and non-standard container ratios"));
table->Add (_allow_any_container, 1, wxEXPAND | wxLEFT, DCPOMATIC_SIZER_GAP);
restart = new StaticText (_panel, _("(restart DCP-o-matic to see all ratios)"));
- table->Add (restart, 1, wxEXPAND | wxALL | wxALIGN_CENTRE_VERTICAL);
+ table->Add(restart, 1, wxALIGN_CENTRE_VERTICAL | wxBOTTOM, DCPOMATIC_CHECKBOX_BOTTOM_PAD);
restart->SetFont (font);
_allow_96khz_audio = new CheckBox (_panel, _("Allow creation of DCPs with 96kHz audio"));