Pārlūkot izejas kodu

Fixes display of internal names on objects shown in guiTreeViewCtrl

Areloch 4 gadi atpakaļ
vecāks
revīzija
e428ecd6ab
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      Engine/source/gui/controls/guiTreeViewCtrl.cpp

+ 1 - 1
Engine/source/gui/controls/guiTreeViewCtrl.cpp

@@ -560,7 +560,7 @@ void GuiTreeViewCtrl::Item::getDisplayText(U32 bufLen, char *buf)
                if (mState.test(Item::Marked))
                   dSprintf(ptr, len, " *[%s]", pInternalName);
                else
-                  dSprintf(ptr, len, " [%s]", pObjName);
+                  dSprintf(ptr, len, " [%s]", pInternalName);
             }
          }
       }