mirror of
https://github.com/rojo-rbx/rojo.git
synced 2026-04-20 20:55:50 +00:00
Add case in reconciler to handle LocalizationTable Contents
This commit is contained in:
@@ -60,6 +60,13 @@ local function makeInstanceMap()
|
||||
end
|
||||
|
||||
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()
|
||||
if instance[key] ~= value then
|
||||
instance[key] = value
|
||||
|
||||
Reference in New Issue
Block a user