diff --git a/Source/Editor/GUI/Docking/FloatWindowDockPanel.cs b/Source/Editor/GUI/Docking/FloatWindowDockPanel.cs index 2a674ce5c..1c75da2c8 100644 --- a/Source/Editor/GUI/Docking/FloatWindowDockPanel.cs +++ b/Source/Editor/GUI/Docking/FloatWindowDockPanel.cs @@ -213,7 +213,12 @@ namespace FlaxEditor.GUI.Docking base.OnSelectedTabChanged(); if (_window != null && SelectedTab != null) + { _window.Title = SelectedTab.Title; + var decorations = Parent.GetChild(); + if (decorations != null) + decorations.PerformLayout(); + } } ///