mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 03:02:35 +01:00
parent
17bf227342
commit
48e756be3e
@ -48,6 +48,7 @@
|
||||
* Take first audio track when loading wave form - thx Tuan-P
|
||||
* Fix issue with waveform original out of sync - thx Leon
|
||||
* Fix "Set start and set end of prev" when playing - thx Leon
|
||||
* Fix "Set end minus gap, go to next and start next here" - thx Leon
|
||||
|
||||
|
||||
3.6.2 (24th August 2021)
|
||||
|
@ -1939,6 +1939,11 @@ namespace Nikse.SubtitleEdit.Controls
|
||||
|
||||
public void SetStartTimeAndDuration(int index, Paragraph paragraph, Paragraph next, Paragraph prev)
|
||||
{
|
||||
if (paragraph == null)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
if (IsValidIndex(index))
|
||||
{
|
||||
ListViewItem item = Items[index];
|
||||
|
Loading…
Reference in New Issue
Block a user