Minor fixes

This commit is contained in:
Wojtek Figat
2025-06-27 18:52:25 +02:00
parent 8cdec15fa6
commit 185151b025
3 changed files with 67 additions and 8 deletions

View File

@@ -156,7 +156,7 @@ Object::~Object()
{
#if BUILD_DEBUG
// Prevent removing object that is still reverenced by the removal service
ASSERT(!ObjectsRemovalService::IsInPool(this));
//ASSERT(!ObjectsRemovalService::IsInPool(this));
#endif
}

View File

@@ -57,7 +57,7 @@ namespace FlaxEngine.GUI
{
base.OnSizeChanged();
// Refresh textblocks since thos emight depend on control size (eg. align right)
// Refresh textblocks since those might depend on control size (eg. align right)
UpdateTextBlocks();
}
}