diff --git a/Source/Editor/GUI/Docking/WindowDragHelper.cs b/Source/Editor/GUI/Docking/WindowDragHelper.cs index 0ba7d85b7..854d5628e 100644 --- a/Source/Editor/GUI/Docking/WindowDragHelper.cs +++ b/Source/Editor/GUI/Docking/WindowDragHelper.cs @@ -323,7 +323,8 @@ namespace FlaxEditor.GUI.Docking AddDockHints(); // Make sure the all the dock hint areas are not under other windows - _toDock?.RootWindow.Window.BringToFront(); + if (_toDock != Editor.Instance.UI.MasterPanel) + _toDock?.RootWindow.Window.BringToFront(); //_toDock?.RootWindow.Window.Focus(); #if PLATFORM_SDL