diff --git a/Source/Editor/GUI/Docking/DockPanelProxy.cs b/Source/Editor/GUI/Docking/DockPanelProxy.cs index ac5e0bc4f..15ff2cad0 100644 --- a/Source/Editor/GUI/Docking/DockPanelProxy.cs +++ b/Source/Editor/GUI/Docking/DockPanelProxy.cs @@ -253,6 +253,12 @@ namespace FlaxEditor.GUI.Docking tabColor = style.BackgroundHighlighted; Render2D.FillRectangle(tabRect, tabColor); } + else + { + tabColor = style.BackgroundHighlighted; + Render2D.DrawLine(tabRect.BottomLeft - new Float2(0 , 1), tabRect.UpperLeft, tabColor); + Render2D.DrawLine(tabRect.BottomRight - new Float2(0 , 1), tabRect.UpperRight, tabColor); + } if (tab.Icon.IsValid) {