diff --git a/LiteEditor/debuggerpane.cpp b/LiteEditor/debuggerpane.cpp index d2d49ac402..561abb6bb0 100644 --- a/LiteEditor/debuggerpane.cpp +++ b/LiteEditor/debuggerpane.cpp @@ -94,7 +94,7 @@ void DebuggerPane::CreateGUIControls() if(!EditorConfigST::Get()->GetOptions()->GetWorkspaceTabsDirection()) { style |= kNotebook_BottomTabs; } - style |= kNotebook_UnderlineActiveTab; + //style |= kNotebook_UnderlineActiveTab; GeneralImages img; m_book = new Notebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style); diff --git a/LiteEditor/output_pane.cpp b/LiteEditor/output_pane.cpp index 2806c50a08..33c03b2b7b 100644 --- a/LiteEditor/output_pane.cpp +++ b/LiteEditor/output_pane.cpp @@ -103,7 +103,7 @@ void OutputPane::CreateGUIControls() style |= kNotebook_RightTabs; #endif } - style |= kNotebook_UnderlineActiveTab; + //style |= kNotebook_UnderlineActiveTab; m_book = new Notebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style); diff --git a/LiteEditor/workspace_pane.cpp b/LiteEditor/workspace_pane.cpp index 41c313b02d..b9ad861bd4 100644 --- a/LiteEditor/workspace_pane.cpp +++ b/LiteEditor/workspace_pane.cpp @@ -91,7 +91,7 @@ void WorkspacePane::CreateGUIControls() #else long style = (kNotebook_Default | kNotebook_AllowDnD); #endif - style |= kNotebook_UnderlineActiveTab; + // style |= kNotebook_UnderlineActiveTab; m_book = new Notebook(this, wxID_ANY, wxDefaultPosition, wxDefaultSize, style); m_book->SetTabDirection(EditorConfigST::Get()->GetOptions()->GetWorkspaceTabsDirection()); diff --git a/Plugin/clTabRenderer.cpp b/Plugin/clTabRenderer.cpp index 034693b10e..934f685490 100644 --- a/Plugin/clTabRenderer.cpp +++ b/Plugin/clTabRenderer.cpp @@ -63,7 +63,8 @@ void clTabColours::InitDarkColours() inactiveTabInnerPenColour = wxColour("#535252"); tabAreaColour = wxColour("#131111").ChangeLightness(115); - markerColour = wxColour("rgb(255, 128, 0)"); + // markerColour = wxColour("rgb(255, 128, 0)"); + markerColour = wxColour("rgb(105, 193, 240)"); // 12x12 bitmap closeButton = wxXmlResource::Get()->LoadBitmap("notebook-dark-x");