viewer#1308 LLFloaterView::restoreAll Crash

master
Andrey Kleshchev 2024-04-25 23:28:48 +03:00 committed by Andrey Kleshchev
parent bc29431ab2
commit 7719d54f4e
1 changed files with 2 additions and 1 deletions

View File

@ -2476,7 +2476,8 @@ void LLFloaterView::reshape(S32 width, S32 height, BOOL called_from_parent)
void LLFloaterView::restoreAll()
{
// make sure all subwindows aren't minimized
for (auto child : *getChildList())
child_list_t child_list = *(getChildList());
for (LLView* child : child_list)
{
LLFloater* floaterp = dynamic_cast<LLFloater*>(child);
if (floaterp)