summaryrefslogtreecommitdiff
path: root/src/wx/timecode.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/wx/timecode.cc')
-rw-r--r--src/wx/timecode.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wx/timecode.cc b/src/wx/timecode.cc
index 9072fb99e..6ce1c1cb8 100644
--- a/src/wx/timecode.cc
+++ b/src/wx/timecode.cc
@@ -47,15 +47,15 @@ Timecode::Timecode (wxWindow* parent)
_hours = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size, 0, validator);
_hours->SetMaxLength (2);
sizer->Add (_hours);
- add_label_to_sizer (sizer, this, wxT (":"));
+ add_label_to_sizer (sizer, this, wxT (":"), false);
_minutes = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size);
_minutes->SetMaxLength (2);
sizer->Add (_minutes);
- add_label_to_sizer (sizer, this, wxT (":"));
+ add_label_to_sizer (sizer, this, wxT (":"), false);
_seconds = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size);
_seconds->SetMaxLength (2);
sizer->Add (_seconds);
- add_label_to_sizer (sizer, this, wxT ("."));
+ add_label_to_sizer (sizer, this, wxT ("."), false);
_frames = new wxTextCtrl (this, wxID_ANY, wxT(""), wxDefaultPosition, size);
_frames->SetMaxLength (2);
sizer->Add (_frames);