diff options
| author | Carl Hetherington <cth@carlh.net> | 2021-06-07 00:15:29 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2021-06-07 00:48:59 +0200 |
| commit | ac4ac42278546136357db0ede052faf5b80286e7 (patch) | |
| tree | 15f3637b8c0826fa562d4253625108d74c976389 | |
| parent | a1f95f87b8254760d7151ba3928cf1071afcc884 (diff) | |
macOS alignment fix (#2039).
| -rw-r--r-- | src/wx/text_panel.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc index ebeb518dd..134d397e8 100644 --- a/src/wx/text_panel.cc +++ b/src/wx/text_panel.cc @@ -165,7 +165,7 @@ TextPanel::setup_visibility () _language_type->Append (_("Main")); _language_type->Append (_("Additional")); _language_type->Bind (wxEVT_CHOICE, boost::bind(&TextPanel::language_is_additional_changed, this)); - _language_sizer->Add (_language_type, 0); + _language_sizer->Add (_language_type, 0, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_CHOICE_TOP_PAD); _grid->Add (_language_sizer, wxGBPosition(_ccap_track_or_language_row, 1), wxGBSpan(1, 2)); film_content_changed (TextContentProperty::LANGUAGE); film_content_changed (TextContentProperty::LANGUAGE_IS_ADDITIONAL); |
