mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Update NodeTree.Component.cs (#2291)
This commit is contained in:
parent
878d892631
commit
7c4e1c44a6
1 changed files with 7 additions and 1 deletions
|
|
@ -58,7 +58,13 @@ internal unsafe class ComponentNodeTree : ResNodeTree
|
||||||
/// <inheritdoc/>
|
/// <inheritdoc/>
|
||||||
private protected override void PrintChildNodes()
|
private protected override void PrintChildNodes()
|
||||||
{
|
{
|
||||||
base.PrintChildNodes();
|
var prevNode = this.CompNode->Component->UldManager.RootNode;
|
||||||
|
while (prevNode != null)
|
||||||
|
{
|
||||||
|
GetOrCreate(prevNode, this.AddonTree).Print(null);
|
||||||
|
prevNode = prevNode->PrevSiblingNode;
|
||||||
|
}
|
||||||
|
|
||||||
var count = this.UldManager->NodeListCount;
|
var count = this.UldManager->NodeListCount;
|
||||||
PrintNodeListAsTree(this.UldManager->NodeList, count, $"Node List [{count}]:", this.AddonTree, new(0f, 0.5f, 0.8f, 1f));
|
PrintNodeListAsTree(this.UldManager->NodeList, count, $"Node List [{count}]:", this.AddonTree, new(0f, 0.5f, 0.8f, 1f));
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue