From e5fe93c1f3dbf69a27c1f1c0b9cc0d93b124f33f Mon Sep 17 00:00:00 2001 From: fallenoak Date: Sun, 7 Dec 2025 17:56:39 -0600 Subject: [PATCH] feat(ui): add missing unlink to CLayoutFrame::DestroyLayout --- src/ui/CLayoutFrame.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ui/CLayoutFrame.cpp b/src/ui/CLayoutFrame.cpp index 1bf5cbf..b7037b8 100644 --- a/src/ui/CLayoutFrame.cpp +++ b/src/ui/CLayoutFrame.cpp @@ -291,6 +291,8 @@ void CLayoutFrame::DestroyLayout() { } this->m_resizeList.Clear(); + + LayoutFrame::s_resizePendingList.UnlinkNode(this); } void CLayoutFrame::FreePoints() {