You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix Lua VMI leak: null C++ refs on orphaned sub-artboard userdata
Sub-artboard scripts store m_context, m_dataRef, m_propertyRefs as
independent registry refs via lua_ref(). When the parent artboard is
destroyed, only top-level scripts' refs are unreffed — the sub-artboard
refs remain as GC roots, keeping C++ objects alive permanently. Track
ScriptReffedArtboard and ScriptedViewModel instances in linked lists
and null their C++ rcp<> pointers during artboard destruction.
0 commit comments