Merge pull request #12947 from Dentomologist/qtutils_clearlayoutrecursively_fix_potential_crash

QtUtils/ClearLayoutRecursively: Fix potential crash
This commit is contained in:
Tilka
2024-08-07 03:29:52 +01:00
committed by GitHub

View File

@ -17,7 +17,7 @@ void ClearLayoutRecursively(QLayout* layout)
if (child->widget())
{
layout->removeWidget(child->widget());
delete child->widget();
child->widget()->deleteLater();
}
else if (child->layout())
{