We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a2b1f5 commit 9590099Copy full SHA for 9590099
PlsqlDeveloperUtPlsqlPlugin/utPLSQL.UI/TestRunnerWindow.cs
@@ -366,9 +366,16 @@ private void UpdateTestResult(@event @event)
366
}
367
368
gridResults.Refresh();
369
- var rowIndex = testResults.IndexOf(testResult);
370
- gridResults.FirstDisplayedScrollingRowIndex = rowIndex;
371
- gridResults.Rows[rowIndex].Selected = true;
+ try
+ {
+ var rowIndex = testResults.IndexOf(testResult);
372
+ gridResults.FirstDisplayedScrollingRowIndex = rowIndex;
373
+ gridResults.Rows[rowIndex].Selected = true;
374
+ }
375
+ catch
376
377
+ // ingore exception that could raise if results are filtered
378
379
380
381
0 commit comments