From 662437c465db540973fffe94a1cdb54142b7d223 Mon Sep 17 00:00:00 2001 From: Carl Hetherington Date: Fri, 2 Oct 2020 01:11:29 +0200 Subject: [PATCH] Label vertical alignment fixes. --- src/wx/video_waveform_dialog.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/wx/video_waveform_dialog.cc b/src/wx/video_waveform_dialog.cc index 510d373c6..8becbd5fb 100644 --- a/src/wx/video_waveform_dialog.cc +++ b/src/wx/video_waveform_dialog.cc @@ -67,11 +67,11 @@ VideoWaveformDialog::VideoWaveformDialog (wxWindow* parent, weak_ptr overall_sizer->Add (controls, 0, wxALL | wxEXPAND, DCPOMATIC_SIZER_X_GAP); wxBoxSizer* position = new wxBoxSizer (wxHORIZONTAL); - add_label_to_sizer (position, this, _("Image X position"), true); + add_label_to_sizer (position, this, _("Image X position"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); _x_position = new StaticText (this, ""); _x_position->SetMinSize (wxSize (64, -1)); position->Add (_x_position, 0, wxALL, DCPOMATIC_SIZER_X_GAP); - add_label_to_sizer (position, this, _("component value"), true); + add_label_to_sizer (position, this, _("component value"), true, 0, wxLEFT | wxRIGHT | wxALIGN_CENTRE_VERTICAL); _value = new StaticText (this, ""); _value->SetMinSize (wxSize (64, -1)); position->Add (_value, 0, wxALL, DCPOMATIC_SIZER_X_GAP); -- 2.30.2