mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-04-03 12:06:42 +00:00
Fixes crash on quickload from the container menu (bug #4239)
This commit is contained in:
parent
55db3c2712
commit
8decd35607
1 changed files with 2 additions and 1 deletions
|
@ -154,7 +154,8 @@ namespace MWGui
|
||||||
{
|
{
|
||||||
WindowBase::onClose();
|
WindowBase::onClose();
|
||||||
|
|
||||||
mModel->onClose();
|
if (mModel)
|
||||||
|
mModel->onClose();
|
||||||
}
|
}
|
||||||
|
|
||||||
void ContainerWindow::onCloseButtonClicked(MyGUI::Widget* _sender)
|
void ContainerWindow::onCloseButtonClicked(MyGUI::Widget* _sender)
|
||||||
|
|
Loading…
Reference in a new issue