mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-17 19:37:09 +02:00
* Use a lighter dark color than black as default background color.
This commit is contained in:
@@ -56,7 +56,7 @@ FlexibleTreeView::FlexibleTreeView( QWidget* parent, QWidget* extraHeader )
|
|||||||
{
|
{
|
||||||
qRegisterMetaType< FlexibleTreeViewMode >( "FlexibleTreeViewMode" );
|
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_header->setBackground( ImageRegistry::instance()->pixmap( RESPATH "images/collection_background.png", QSize( 0, 0 ) ), false );
|
||||||
|
|
||||||
m_treeView->proxyModel()->setStyle( PlayableProxyModel::Collection );
|
m_treeView->proxyModel()->setStyle( PlayableProxyModel::Collection );
|
||||||
|
@@ -33,6 +33,7 @@ BackgroundWidget::BackgroundWidget( QWidget* parent )
|
|||||||
: QWidget( parent )
|
: QWidget( parent )
|
||||||
{
|
{
|
||||||
setAutoFillBackground( false );
|
setAutoFillBackground( false );
|
||||||
|
setBackgroundColor( QColor( "#333333" ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@@ -59,7 +59,7 @@ AudioControls::AudioControls( QWidget* parent )
|
|||||||
ui->setupUi( this );
|
ui->setupUi( this );
|
||||||
setAutoFillBackground( false );
|
setAutoFillBackground( false );
|
||||||
setAcceptDrops( true );
|
setAcceptDrops( true );
|
||||||
setBackgroundColor( Qt::black );
|
setBackgroundColor( QColor( "#333333" ) );
|
||||||
setFixedHeight( scaledY( 85 ) );
|
setFixedHeight( scaledY( 85 ) );
|
||||||
|
|
||||||
QFont f = font();
|
QFont f = font();
|
||||||
|
Reference in New Issue
Block a user