Skip to content

Commit

Permalink
final touch to the tabs before 9.1 :)
Browse files Browse the repository at this point in the history
  • Loading branch information
Eran Ifrah committed Jan 27, 2016
1 parent 602690b commit 711ee61
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion LiteEditor/debuggerpane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion LiteEditor/output_pane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down
2 changes: 1 addition & 1 deletion LiteEditor/workspace_pane.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
3 changes: 2 additions & 1 deletion Plugin/clTabRenderer.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 711ee61

Please sign in to comment.