From: Carl Hetherington Date: Thu, 1 Oct 2020 23:11:29 +0000 (+0200) Subject: Label vertical alignment fixes. X-Git-Tag: v2.15.104~47 X-Git-Url: https://git.carlh.net/gitweb/?p=dcpomatic.git;a=commitdiff_plain;h=662437c465db540973fffe94a1cdb54142b7d223 Label vertical alignment fixes. --- 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);