Make gui/gm-editor work with lua tables

develop
lethosor 2015-05-24 11:43:05 -04:00
parent e27493fa02
commit 7baf581b93
1 changed files with 5 additions and 5 deletions

@ -215,11 +215,11 @@ function GmEditorUi:editSelected(index,choice)
elseif trg_type == 'boolean' then
trg.target[trg_key] = not trg.target[trg_key]
self:updateTarget(true)
elseif trg_type=='userdata' then
elseif trg_type == 'userdata' or trg_type == 'table' then
self:pushTarget(trg.target[trg_key])
else
print("Unknow type:"..trg_type)
print("Subtype:"..tostring(trg.target[trg_key]._kind))
print("Unknown type:"..trg_type)
pcall(function() print("Subtype:"..tostring(trg.target[trg_key]._kind)) end)
end
end
end