diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-10-02 01:11:29 +0200 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-10-13 18:51:11 +0200 |
| commit | 662437c465db540973fffe94a1cdb54142b7d223 (patch) | |
| tree | 3bd7427cb9abf28fc9082d3a569edda7b66aa8e1 | |
| parent | 80e8b09ff3c688261be9f7ceb8e9f42f4c744d03 (diff) | |
Label vertical alignment fixes.
| -rw-r--r-- | src/wx/video_waveform_dialog.cc | 4 |
1 files 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<const Film> 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); |
