forked from rojo-rbx/rojo
Add case in reconciler to handle LocalizationTable Contents
This commit is contained in:
@@ -60,6 +60,13 @@ local function makeInstanceMap()
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function setProperty(instance, key, value)
|
local function setProperty(instance, key, value)
|
||||||
|
-- The 'Contents' property of LocalizationTable isn't directly exposed, but
|
||||||
|
-- has corresponding (deprecated) getters and setters.
|
||||||
|
if key == "Contents" and instance.ClassName == "LocalizationTable" then
|
||||||
|
instance:SetContents(value)
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
local ok, err = pcall(function()
|
local ok, err = pcall(function()
|
||||||
if instance[key] ~= value then
|
if instance[key] ~= value then
|
||||||
instance[key] = value
|
instance[key] = value
|
||||||
|
|||||||
Reference in New Issue
Block a user