summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-01-11 22:51:48 +0100
committerCarl Hetherington <cth@carlh.net>2025-01-11 22:51:48 +0100
commita80a994d5ff1af81823f17b2b27ce4956f7ff3cd (patch)
tree3106d170914abfa0f87f28ff2dfaab585e1c3d72 /src
parent12fd63144288f7ae58f4b67ebf6e844ce9ef840b (diff)
Revert "macOS alignment fix (#2039)."
This reverts commit ac4ac42278546136357db0ede052faf5b80286e7. Apparently this once helped with vertical alignment, but now it seems to make it worse (at least on macOS 15.2).
Diffstat (limited to 'src')
-rw-r--r--src/wx/text_panel.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/text_panel.cc b/src/wx/text_panel.cc
index 0625b4187..b69f115f7 100644
--- a/src/wx/text_panel.cc
+++ b/src/wx/text_panel.cc
@@ -170,7 +170,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, wxALIGN_CENTER_VERTICAL | wxTOP, DCPOMATIC_CHOICE_TOP_PAD);
+ _language_sizer->Add (_language_type, 0);
_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);