1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-03 10:15:35 +00:00

Merge pull request #2381 from akortunov/warnfix

Fix an exception during reload when container windows is active
This commit is contained in:
Andrei Kortunov 2019-05-13 18:14:14 +04:00 committed by GitHub
commit 50c87bacea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -161,7 +161,8 @@ namespace MWGui
if (mModel)
mModel->onClose();
MWBase::Environment::get().getMechanicsManager()->onClose(mPtr);
if (!mPtr.isEmpty())
MWBase::Environment::get().getMechanicsManager()->onClose(mPtr);
}
void ContainerWindow::onCloseButtonClicked(MyGUI::Widget* _sender)