Skip to content
Snippets Groups Projects
Commit 753596f9 authored by Jens Bache-Wiig's avatar Jens Bache-Wiig
Browse files

Reduced text highlight on selected item

This is a cosmetic fix for the sidebar.
The highlight contrast is too high now that
the background is darker.
parent c4404318
No related branches found
No related tags found
No related merge requests found
......@@ -270,7 +270,7 @@ void FancyTabBar::paintTab(QPainter *painter, int tabIndex) const
boldFont.setPointSizeF(Utils::StyleHelper::sidebarFontSize());
boldFont.setBold(true);
painter->setFont(boldFont);
painter->setPen(selected ? Utils::StyleHelper::panelTextColor() : QColor(30, 30, 30, 80));
painter->setPen(selected ? QColor(255, 255, 255, 160) : QColor(30, 30, 30, 80));
int textFlags = Qt::AlignCenter | Qt::AlignBottom | Qt::ElideRight | Qt::TextWordWrap;
if (enabled) {
painter->drawText(tabTextRect, textFlags, tabText);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment