From 04a2be83984e677d732d2333a5bf09207a40a435 Mon Sep 17 00:00:00 2001 From: Christian Muehlhaeuser Date: Sat, 15 Jun 2013 10:34:00 +0200 Subject: [PATCH] * Fixed HistoryWidget's header color. --- src/libtomahawk/widgets/HistoryWidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libtomahawk/widgets/HistoryWidget.cpp b/src/libtomahawk/widgets/HistoryWidget.cpp index 3841b887a..8a79ae455 100644 --- a/src/libtomahawk/widgets/HistoryWidget.cpp +++ b/src/libtomahawk/widgets/HistoryWidget.cpp @@ -58,7 +58,7 @@ HistoryWidget::HistoryWidget( const source_ptr& source, QWidget* parent ) QPalette pal = m_header->palette(); pal.setColor( QPalette::Foreground, Qt::white ); pal.setColor( QPalette::Text, Qt::white ); - pal.setBrush( backgroundRole(), TomahawkStyle::PAGE_BACKGROUND.lighter() ); + pal.setBrush( backgroundRole(), TomahawkStyle::HEADER_BACKGROUND.lighter() ); m_header->setPalette( pal ); m_header->setAutoFillBackground( true );