Mercurial > pub > ImplabNet
diff Implab.Diagnostics.Interactive/TraceForm.cs @ 206:86b61d53b7db v2
Слияние
| author | cin | 
|---|---|
| date | Tue, 25 Oct 2016 17:40:45 +0300 | 
| parents | cbb0bd8fc0d1 | 
| children | 
line wrap: on
 line diff
--- a/Implab.Diagnostics.Interactive/TraceForm.cs Tue Oct 25 17:40:33 2016 +0300 +++ b/Implab.Diagnostics.Interactive/TraceForm.cs Tue Oct 25 17:40:45 2016 +0300 @@ -31,7 +31,8 @@ public void AddTraceEvent(TraceViewItem item) { traceViewItemBindingSource.Add(item); - eventsDataGrid.FirstDisplayedScrollingRowIndex = eventsDataGrid.RowCount - 1; + if(eventsDataGrid.RowCount > 0) + eventsDataGrid.FirstDisplayedScrollingRowIndex = eventsDataGrid.RowCount - 1; } Color GetThreadColor(int thread) {
