diff options
| author | Carl Hetherington <cth@carlh.net> | 2020-11-05 21:52:07 +0100 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2020-11-05 21:52:07 +0100 |
| commit | a6929b79a5f6167600a2d2bfc4e1ef1dc4796665 (patch) | |
| tree | 9d6da6950fb7fab045b4ec956ef0a79f9c7319c0 | |
| parent | 0fc3ee1eac41d391ebb79044b0f46849a90f5138 (diff) | |
Fix some alignment.
| -rw-r--r-- | src/wx/timecode.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc index 754483c0c..684f29b19 100644 --- a/src/wx/timecode.cc +++ b/src/wx/timecode.cc @@ -50,15 +50,15 @@ TimecodeBase::TimecodeBase (wxWindow* parent, bool set_button) _hours = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator); _hours->SetMaxLength (2); editable_sizer->Add (_hours); - add_label_to_sizer (editable_sizer, _editable, wxT (":"), false); + add_label_to_sizer (editable_sizer, _editable, wxT(":"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL); _minutes = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator); _minutes->SetMaxLength (2); editable_sizer->Add (_minutes); - add_label_to_sizer (editable_sizer, _editable, wxT (":"), false); + add_label_to_sizer (editable_sizer, _editable, wxT (":"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL); _seconds = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator); _seconds->SetMaxLength (2); editable_sizer->Add (_seconds); - add_label_to_sizer (editable_sizer, _editable, wxT (":"), false); + add_label_to_sizer (editable_sizer, _editable, wxT (":"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL); _frames = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, s, 0, validator); _frames->SetMaxLength (2); editable_sizer->Add (_frames); @@ -69,7 +69,7 @@ TimecodeBase::TimecodeBase (wxWindow* parent, bool set_button) _editable->SetSizerAndFit (editable_sizer); _sizer->Add (_editable); - _fixed = add_label_to_sizer (_sizer, this, wxT ("42"), false); + _fixed = add_label_to_sizer (_sizer, this, wxT ("42"), false, 0, wxLEFT | wxRIGHT | wxALIGN_CENTER_VERTICAL); _hours->Bind (wxEVT_TEXT, boost::bind (&TimecodeBase::changed, this)); _minutes->Bind (wxEVT_TEXT, boost::bind (&TimecodeBase::changed, this)); |
