diff options
| author | Carl Hetherington <cth@carlh.net> | 2014-03-03 12:49:25 +0000 |
|---|---|---|
| committer | Carl Hetherington <cth@carlh.net> | 2014-03-03 12:49:25 +0000 |
| commit | f0738a22fc7555c306d49bcd1c356ce210e2c0e2 (patch) | |
| tree | 596fc785bb92ce531c9b8be613df8e56429e6b05 /src/wx/timecode.cc | |
| parent | a2e3a20a441e604550f0036ca198d5d2122e16a7 (diff) | |
Correct timecode separator (to help with #322).
Diffstat (limited to 'src/wx/timecode.cc')
| -rw-r--r-- | src/wx/timecode.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc index ef0ced428..ac4fd46c4 100644 --- a/src/wx/timecode.cc +++ b/src/wx/timecode.cc @@ -58,7 +58,7 @@ Timecode::Timecode (wxWindow* parent) _seconds = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, size, 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); _frames = new wxTextCtrl (_editable, wxID_ANY, wxT(""), wxDefaultPosition, size, 0, validator); _frames->SetMaxLength (2); editable_sizer->Add (_frames); |
