1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-16 11:04:01 +02:00

* Use a lighter dark color than black as default background color.

This commit is contained in:
Christian Muehlhaeuser
2014-08-20 14:34:18 +02:00
parent 708d585b96
commit d73946ea3e
3 changed files with 3 additions and 2 deletions

View File

@@ -56,7 +56,7 @@ FlexibleTreeView::FlexibleTreeView( QWidget* parent, QWidget* extraHeader )
{
qRegisterMetaType< FlexibleTreeViewMode >( "FlexibleTreeViewMode" );
m_header->setBackgroundColor( Qt::black );
m_header->setBackgroundColor( QColor( "#333333" ) );
m_header->setBackground( ImageRegistry::instance()->pixmap( RESPATH "images/collection_background.png", QSize( 0, 0 ) ), false );
m_treeView->proxyModel()->setStyle( PlayableProxyModel::Collection );

View File

@@ -33,6 +33,7 @@ BackgroundWidget::BackgroundWidget( QWidget* parent )
: QWidget( parent )
{
setAutoFillBackground( false );
setBackgroundColor( QColor( "#333333" ) );
}

View File

@@ -59,7 +59,7 @@ AudioControls::AudioControls( QWidget* parent )
ui->setupUi( this );
setAutoFillBackground( false );
setAcceptDrops( true );
setBackgroundColor( Qt::black );
setBackgroundColor( QColor( "#333333" ) );
setFixedHeight( scaledY( 85 ) );
QFont f = font();