1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 06:07:37 +02:00

* Brighter colors for the gradient.

This commit is contained in:
Christian Muehlhaeuser
2011-02-08 12:49:17 +01:00
parent e0317fd416
commit fe754adb92

View File

@@ -102,8 +102,8 @@ TopBar::resizeEvent(QResizeEvent* e )
QWidget::resizeEvent( e );
QLinearGradient gradient = QLinearGradient( contentsRect().topLeft(), contentsRect().bottomRight() );
gradient.setColorAt( 0.0, QColor( 80, 80, 80 ) );
gradient.setColorAt( 1.0, QColor( 43, 43, 43 ) );
gradient.setColorAt( 0.0, QColor( 100, 100, 100 ) );
gradient.setColorAt( 1.0, QColor( 63, 63, 63 ) );
QPalette p = palette();
p.setBrush( QPalette::Background, QBrush( gradient ) );