mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-14 16:14:38 +00:00
Fixes display of internal names on objects shown in guiTreeViewCtrl
This commit is contained in:
parent
bea11acc66
commit
e428ecd6ab
1 changed files with 1 additions and 1 deletions
|
|
@ -560,7 +560,7 @@ void GuiTreeViewCtrl::Item::getDisplayText(U32 bufLen, char *buf)
|
||||||
if (mState.test(Item::Marked))
|
if (mState.test(Item::Marked))
|
||||||
dSprintf(ptr, len, " *[%s]", pInternalName);
|
dSprintf(ptr, len, " *[%s]", pInternalName);
|
||||||
else
|
else
|
||||||
dSprintf(ptr, len, " [%s]", pObjName);
|
dSprintf(ptr, len, " [%s]", pInternalName);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue