feat(ui): delete strata in CSimpleTop dtor

This commit is contained in:
fallenoak 2026-01-25 12:45:10 -06:00
parent 1589466076
commit 23be35bed2
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -400,6 +400,13 @@ CSimpleTop::CSimpleTop() : CLayoutFrame() {
CSimpleTop::~CSimpleTop() {
// TODO
for (auto& strata : this->m_strata) {
delete strata;
strata = nullptr;
}
// TODO
this->DisableEvents();
HandleClose(this->m_screenLayer);