diff --git a/src/libtomahawk/widgets/HeaderWidget.ui b/src/libtomahawk/widgets/HeaderWidget.ui
index 1b9628644..7b0927839 100644
--- a/src/libtomahawk/widgets/HeaderWidget.ui
+++ b/src/libtomahawk/widgets/HeaderWidget.ui
@@ -6,8 +6,8 @@
0
0
- 400
- 300
+ 703
+ 291
@@ -46,11 +46,113 @@
-
-
-
- TextLabel
+
+
+ 0
-
+
-
+
+
+ TextLabel
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+ TextLabel
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Fixed
+
+
+
+ 32
+ 20
+
+
+
+
+ -
+
+
+ TextLabel
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Fixed
+
+
+
+ 32
+ 20
+
+
+
+
+ -
+
+
+ TextLabel
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+
+ 40
+ 20
+
+
+
+
+ -
+
+
+ Qt::Horizontal
+
+
+ QSizePolicy::Fixed
+
+
+
+ 32
+ 20
+
+
+
+
+
@@ -64,6 +166,11 @@
widgets/BackgroundWidget.h
1
+
+ ClickableLabel
+ QLabel
+
+
diff --git a/src/libtomahawk/widgets/SearchWidget.cpp b/src/libtomahawk/widgets/SearchWidget.cpp
index 526bf55ac..de884ff39 100644
--- a/src/libtomahawk/widgets/SearchWidget.cpp
+++ b/src/libtomahawk/widgets/SearchWidget.cpp
@@ -133,6 +133,10 @@ SearchWidget::SearchWidget( const QString& search, QWidget* parent )
uiHeader->artistLabel->setFont( f );
uiHeader->artistLabel->setPalette( p );
+
+ uiHeader->anchor1Label->hide();
+ uiHeader->anchor2Label->hide();
+ uiHeader->anchor3Label->hide();
}
m_stackedWidget = new QStackedWidget();
diff --git a/src/libtomahawk/widgets/infowidgets/AlbumInfoWidget.cpp b/src/libtomahawk/widgets/infowidgets/AlbumInfoWidget.cpp
index f9fd9da66..8dec95824 100644
--- a/src/libtomahawk/widgets/infowidgets/AlbumInfoWidget.cpp
+++ b/src/libtomahawk/widgets/infowidgets/AlbumInfoWidget.cpp
@@ -76,6 +76,10 @@ AlbumInfoWidget::AlbumInfoWidget( const Tomahawk::album_ptr& album, QWidget* par
uiHeader->artistLabel->setFont( f );
uiHeader->artistLabel->setPalette( p );
+
+ uiHeader->anchor1Label->hide();
+ uiHeader->anchor2Label->hide();
+ uiHeader->anchor3Label->hide();
}
ui->topHits->setStyleSheet( QString( "QListView { background-color: #f9f9f9; }" ) );
diff --git a/src/viewpages/dashboard/Dashboard.cpp b/src/viewpages/dashboard/Dashboard.cpp
index db8269dd0..60e42bd9b 100644
--- a/src/viewpages/dashboard/Dashboard.cpp
+++ b/src/viewpages/dashboard/Dashboard.cpp
@@ -97,6 +97,10 @@ DashboardWidget::DashboardWidget( QWidget* parent )
uiHeader->artistLabel->setFont( f );
uiHeader->artistLabel->setPalette( p );
uiHeader->artistLabel->setText( tr( "Dashboard" ).toUpper() );
+
+ uiHeader->anchor1Label->hide();
+ uiHeader->anchor2Label->hide();
+ uiHeader->anchor3Label->hide();
}
{