diff --git a/src/plugins/coreplugin/progressmanager/futureprogress.cpp b/src/plugins/coreplugin/progressmanager/futureprogress.cpp index 4aad44d94c4..55fc29225d9 100644 --- a/src/plugins/coreplugin/progressmanager/futureprogress.cpp +++ b/src/plugins/coreplugin/progressmanager/futureprogress.cpp @@ -303,8 +303,9 @@ void FutureProgress::paintEvent(QPaintEvent *) QPainter p(this); if (creatorTheme()->flag(Theme::FlatToolBars)) { p.fillRect(rect(), StyleHelper::baseColor()); + p.fillRect(rect(), creatorTheme()->color(Theme::FancyToolButtonSelectedColor)); } else { - QLinearGradient grad = StyleHelper::statusBarGradient(rect()); + QLinearGradient grad = StyleHelper::statusBarGradient(rect()); p.fillRect(rect(), grad); } } diff --git a/src/plugins/coreplugin/progressmanager/progressbar.cpp b/src/plugins/coreplugin/progressmanager/progressbar.cpp index 196fe2c4b4e..e143b26251c 100644 --- a/src/plugins/coreplugin/progressmanager/progressbar.cpp +++ b/src/plugins/coreplugin/progressmanager/progressbar.cpp @@ -230,7 +230,7 @@ void ProgressBar::paintEvent(QPaintEvent *) const int separatorHeight = m_separatorVisible ? SEPARATOR_HEIGHT : 0; if (m_separatorVisible) { QRectF innerRect = QRectF(this->rect()).adjusted(0.5, 0.5, -0.5, -0.5); - p.setPen(StyleHelper::sidebarShadow()); + p.setPen(StyleHelper::baseColor()); p.drawLine(innerRect.topLeft(), innerRect.topRight()); if (creatorTheme()->flag(Theme::DrawToolBarHighlights)) {