mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
Fix crash in column paste - thx OmrSi :)
See comment b968dbcfe9 (commitcomment-39206839)
This commit is contained in:
parent
cdb310672e
commit
5cf27dda4d
@ -25439,6 +25439,10 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
if (tmp.Paragraphs.Count == 0)
|
||||
{
|
||||
tmp = SubtitleFormat.LoadSubtitleFromLines(list, null);
|
||||
if (tmp == null)
|
||||
{
|
||||
tmp = new Subtitle();
|
||||
}
|
||||
}
|
||||
|
||||
if (SubtitleListview1.SelectedItems.Count == 1 && text.Length > 0)
|
||||
|
Loading…
Reference in New Issue
Block a user