зеркало из https://github.com/mozilla/gecko-dev.git
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:
Родитель
75e46e620c
Коммит
1c1b5c1262
|
@ -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({
|
||||
|
|
Загрузка…
Ссылка в новой задаче