mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 19:22:53 +01:00
parent
842d0967ee
commit
3423de5dc6
@ -1002,9 +1002,12 @@ namespace Nikse.SubtitleEdit.Forms
|
||||
SubtitleListview1.SelectNone();
|
||||
var end = Math.Max(start, idx);
|
||||
start = Math.Min(start, idx);
|
||||
for (int i = start; i <= end; i++)
|
||||
if (start >= 0)
|
||||
{
|
||||
SubtitleListview1.Items[i].Selected = true;
|
||||
for (int i = start; i <= end; i++)
|
||||
{
|
||||
SubtitleListview1.Items[i].Selected = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user