Auto status change to "Under Review"
@@ -112,7 +112,7 namespace Implab.Diagnostics.Interactive | |||
|
112 | 112 | Indent = args.Operation.Level, |
|
113 | 113 | Message = entry.ToString(), |
|
114 | 114 | Thread = args.ThreadId, |
|
115 |
Channel = args.Channel |
|
|
115 | Channel = args.Channel.ToString(), | |
|
116 | 116 | Timestamp = Environment.TickCount |
|
117 | 117 | }; |
|
118 | 118 |
@@ -31,7 +31,8 namespace Implab.Diagnostics.Interactive | |||
|
31 | 31 | |
|
32 | 32 | public void AddTraceEvent(TraceViewItem item) { |
|
33 | 33 | traceViewItemBindingSource.Add(item); |
|
34 | eventsDataGrid.FirstDisplayedScrollingRowIndex = eventsDataGrid.RowCount - 1; | |
|
34 | if(eventsDataGrid.RowCount > 0) | |
|
35 | eventsDataGrid.FirstDisplayedScrollingRowIndex = eventsDataGrid.RowCount - 1; | |
|
35 | 36 | } |
|
36 | 37 | |
|
37 | 38 | Color GetThreadColor(int thread) { |
General Comments 3
ok, latest stable version should be in default
You need to be logged in to leave comments.
Login now