1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-20 15:59:42 +01:00

* Fixed color definitions.

This commit is contained in:
Christian Muehlhaeuser 2012-12-20 16:40:12 +01:00
parent 42364921a3
commit d31ce9c94c
2 changed files with 2 additions and 2 deletions

View File

@ -93,7 +93,7 @@ ContextWidget::ContextWidget( QWidget* parent )
ensurePolished();
QPalette pal = palette();
pal.setBrush( QPalette::Window, QColor( "##272b2e" ) );
pal.setBrush( QPalette::Window, QColor( "#272b2e" ) );
setPalette( pal );
connect( ui->toggleButton, SIGNAL( clicked() ), SLOT( toggleSize() ) );

View File

@ -44,7 +44,7 @@ TrackInfoWidget::TrackInfoWidget( const Tomahawk::query_ptr& query, QWidget* par
ui->setupUi( widget );
QPalette pal = palette();
pal.setColor( QPalette::Window, QColor( "##272b2e" ) );
pal.setColor( QPalette::Window, QColor( "#272b2e" ) );
widget->setPalette( pal );
widget->setAutoFillBackground( true );