Improve sidebar readability on mac

Slightly increased the font size. Added a bit
more shadow and tweaked the progress bar.
This commit is contained in:
Jens Bache-Wiig
2010-02-26 16:12:10 +01:00
parent db599cd7eb
commit 7bd076e4f0
4 changed files with 7 additions and 6 deletions

View File

@@ -176,7 +176,7 @@ void FancyToolButton::paintEvent(QPaintEvent *event)
painter.drawText(r, textFlags, ellidedBuildConfiguration);
QStyleOption opt;
opt.initFrom(this);
opt.rect = rect().adjusted(rect().width() - 18, 0, -10, 0);
opt.rect = rect().adjusted(rect().width() - 16, 0, -8, 0);
Utils::StyleHelper::drawArrow(QStyle::PE_IndicatorArrowRight, &painter, &opt);
}