Skip to content

Commit

Permalink
Fix Cell add exception in SelectBetweenMarkers
Browse files Browse the repository at this point in the history
- closes #3971
  • Loading branch information
Morilli committed Sep 9, 2024
1 parent 29c15ad commit a955868
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -378,6 +378,7 @@ private void SelectBetweenMarkersMenuItem_Click(object sender, EventArgs e)
int prev = prevMarker?.Frame ?? 0;
int next = nextMarker?.Frame ?? CurrentTasMovie.InputLogLength;

TasView.DeselectAll();
for (int i = prev; i < next; i++)
{
TasView.SelectRow(i, true);
Expand Down

0 comments on commit a955868

Please sign in to comment.