Bug 1219820 - Do not try and select the hidden root when navigating the heap view tree with keyboard shortcuts; r=jsantell

This commit is contained in:
Nick Fitzgerald 2015-10-29 17:28:32 -07:00 коммит произвёл Jordan Santell
Родитель 75e46e620c
Коммит 1c1b5c1262
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -42,7 +42,10 @@ function createTreeProperties (snapshot, toolbox) {
const totals = getSnapshotTotals(snapshot);
return {
getParent: node => map[node.id],
getParent: node => {
const parent = map[node.id];
return parent === census ? null : parent;
},
getChildren: node => node.children || [],
renderItem: (item, depth, focused, arrow) =>
new TreeItem({