Increase Editor profiler depth

This commit is contained in:
2023-05-21 00:51:26 +03:00
parent 1e6ed32c63
commit c5c440469e
2 changed files with 2 additions and 2 deletions

View File

@@ -526,7 +526,7 @@ namespace FlaxEditor.Windows.Profiler
}
row.Depth = e.Depth;
row.Width = _table.Width;
row.Visible = e.Depth < 2;
row.Visible = e.Depth < 10;
row.BackgroundColor = i % 2 == 0 ? rowColor2 : Color.Transparent;
row.Parent = _table;
}

View File

@@ -370,7 +370,7 @@ namespace FlaxEditor.Windows.Profiler
}
row.Depth = e.Depth;
row.Width = _table.Width;
row.Visible = e.Depth < 3;
row.Visible = e.Depth < 13;
row.BackgroundColor = i % 2 == 0 ? rowColor2 : Color.Transparent;
row.Parent = _table;
}