mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-03-13 20:39:57 +01:00
* Use a lighter dark color than black as default background color.
This commit is contained in:
parent
708d585b96
commit
d73946ea3e
@ -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 );
|
||||
|
@ -33,6 +33,7 @@ BackgroundWidget::BackgroundWidget( QWidget* parent )
|
||||
: QWidget( parent )
|
||||
{
|
||||
setAutoFillBackground( false );
|
||||
setBackgroundColor( QColor( "#333333" ) );
|
||||
}
|
||||
|
||||
|
||||
|
@ -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();
|
||||
|
Loading…
x
Reference in New Issue
Block a user