mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-09-08 11:51:23 -04:00
Don't destroy root widget for new elements
This commit is contained in:
parent
dce0a9e11e
commit
b12f98db98
@ -313,11 +313,14 @@ namespace LuaUi
|
||||
{
|
||||
if (mState != Destroyed)
|
||||
{
|
||||
destroyRoot(mRoot);
|
||||
mRoot = nullptr;
|
||||
if (mState != New)
|
||||
mLayout = sol::make_object(mLayout.lua_state(), sol::nil);
|
||||
mState = Destroyed;
|
||||
{
|
||||
assert(mRoot);
|
||||
destroyRoot(mRoot);
|
||||
mRoot = nullptr;
|
||||
}
|
||||
mLayout = sol::make_object(mLayout.lua_state(), sol::nil);
|
||||
}
|
||||
mState = Destroyed;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user