commit | 9a4753ac5fba7f792645d809460984ff737ee118 | [log] [tgz] |
---|---|---|
author | Vishnu Nair <vishnun@google.com> | Thu Oct 15 14:48:00 2020 -0700 |
committer | Vishnu Nair <vishnun@google.com> | Thu Oct 15 14:49:28 2020 -0700 |
tree | d8cebec0deebd5abececc772f64e1685d00435ee | |
parent | 1e66af77a80dabb81c8b7c14871b22234b776fa1 [diff] |
Winscope: fix layer traversal Test: open sf trace of chrome in winscope Change-Id: I4e0e9fad427e920021e00a2d6330027b43543502
diff --git a/tools/winscope/src/sf_visibility.js b/tools/winscope/src/sf_visibility.js index af5c16f..11ff0cd 100644 --- a/tools/winscope/src/sf_visibility.js +++ b/tools/winscope/src/sf_visibility.js
@@ -281,7 +281,7 @@ `Children layer with id ${id} not found in dumped layers... ` + `Skipping layer in traversal...`); } else { - relatives.push(layerMap[id]); + children.push(layerMap[id]); } }