From 4ddbc8ba5c1bf3308d91eb706f7eaab0aa7a2e97 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Wed, 11 Feb 2026 23:32:53 +0100 Subject: [PATCH] Fix floating dock window title to update when selected tab gets changed #2800 --- Source/Editor/GUI/Docking/FloatWindowDockPanel.cs | 5 +++++ 1 file changed, 5 insertions(+) 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(); + } } ///