forked from mia/Aegisub
Fix copy/paste error that made the end time and duration boxes not work
Originally committed to SVN as r6338.
This commit is contained in:
parent
0287edaa33
commit
e026d2a60a
1 changed files with 2 additions and 2 deletions
|
@ -174,9 +174,9 @@ SubsEditBox::SubsEditBox(wxWindow *parent, agi::Context *context)
|
|||
MiddleSizer->AddSpacer(5);
|
||||
|
||||
StartTime = MakeTimeCtrl(false, _("Start time"), &SubsEditBox::OnStartTimeChange);
|
||||
EndTime = MakeTimeCtrl(true, _("End time"), &SubsEditBox::OnStartTimeChange);
|
||||
EndTime = MakeTimeCtrl(true, _("End time"), &SubsEditBox::OnEndTimeChange);
|
||||
MiddleSizer->AddSpacer(5);
|
||||
Duration = MakeTimeCtrl(false, _("Line duration"), &SubsEditBox::OnStartTimeChange);
|
||||
Duration = MakeTimeCtrl(false, _("Line duration"), &SubsEditBox::OnDurationChange);
|
||||
MiddleSizer->AddSpacer(5);
|
||||
|
||||
MarginL = MakeMarginCtrl(_("Left Margin (0 = default)"), &SubsEditBox::OnMarginLChange);
|
||||
|
|
Loading…
Reference in a new issue