mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
parent
c89c136727
commit
4c68bb6858
@ -16863,7 +16863,6 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
var p = _subtitle.GetParagraphOrDefault(index - 1);
|
||||
if (p == null || p.StartTime.TotalMilliseconds < p.StartTime.TotalMilliseconds - 9000)
|
||||
{
|
||||
MakeHistoryForUndoOnlyIfNotRecent(string.Format(_language.VideoControls.BeforeChangingTimeInWaveformX, "#" + p.Number + " " + p.Text));
|
||||
SetStartTime(false, positionInSeconds);
|
||||
return;
|
||||
}
|
||||
@ -16900,6 +16899,11 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
_subtitleListViewIndex = -1;
|
||||
SubtitleListview1.SelectIndexAndEnsureVisible(index + 1, true);
|
||||
}
|
||||
else
|
||||
{
|
||||
p = _subtitle.GetParagraphOrDefault(index);
|
||||
InitializeListViewEditBox(p);
|
||||
}
|
||||
}
|
||||
|
||||
private void ExtendCurrentSubtitle()
|
||||
|
Loading…
Reference in New Issue
Block a user