Index: Source/devtools/front_end/timeline/TracingTimelineUIUtils.js |
diff --git a/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js b/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js |
index 07c8a53a98dc1c1f2a31a9fb324373f6ae8661bf..871422764267b2c3669357dd5459b530a1148920 100644 |
--- a/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js |
+++ b/Source/devtools/front_end/timeline/TracingTimelineUIUtils.js |
@@ -713,6 +713,8 @@ WebInspector.TracingTimelineUIUtils._aggregatedStatsForTraceEvent = function(tot |
break; |
if (!nextEvent.selfTime) |
continue; |
+ if (nextEvent.thread !== event.thread) |
+ continue; |
if (i > index) |
hasChildren = true; |
var category = WebInspector.TracingTimelineUIUtils.styleForTraceEvent(nextEvent.name).category.name; |