From d3bdc3cf8b0ee73ac45830751380cee5f885914c Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Thu, 25 Mar 2021 21:27:42 +0100 Subject: [PATCH] Fix UI not being updated with particular panels used when changing child control anchors #385 --- Source/Engine/UI/GUI/Control.Bounds.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Engine/UI/GUI/Control.Bounds.cs b/Source/Engine/UI/GUI/Control.Bounds.cs index 06bd0499d..e4e2eafcc 100644 --- a/Source/Engine/UI/GUI/Control.Bounds.cs +++ b/Source/Engine/UI/GUI/Control.Bounds.cs @@ -558,6 +558,7 @@ namespace FlaxEngine.GUI } SetBounds(ref bounds); } + _parent?.PerformLayout(); return; } }