viewer#1308 LLFloaterView::restoreAll Crash

master
Andrey Kleshchev 2024-04-25 23:28:48 +03:00 committed by Ansariel
parent 5b18d10cab
commit 2c6a6294fe
1 changed files with 2 additions and 1 deletions

View File

@ -2701,7 +2701,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)