Another round of polishing

This commit is contained in:
Tercio Jose
2024-03-04 21:40:46 -03:00
parent b1a7c5e278
commit a155ec56a3
27 changed files with 677 additions and 270 deletions
+2 -2
View File
@@ -596,7 +596,7 @@ function detailsFramework:NewTextEntry(parent, container, name, member, width, h
end
if (name:find("$parent")) then
local parentName = detailsFramework.GetParentName(parent)
local parentName = detailsFramework:GetParentName(parent)
name = name:gsub("$parent", parentName)
end
@@ -1065,7 +1065,7 @@ end
function detailsFramework:NewSpecialLuaEditorEntry(parent, width, height, member, name, nointent, showLineNumbers, bNoName)
if (not bNoName) then
if (name and name:find("$parent")) then
local parentName = detailsFramework.GetParentName(parent)
local parentName = detailsFramework:GetParentName(parent)
name = name:gsub("$parent", parentName)
end
else