1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-08-06 14:16:32 +02:00

* Removed Titillium Web and Pathway Gothic One fonts.

This commit is contained in:
Christian Muehlhaeuser
2014-10-12 13:02:46 +02:00
parent 0af3478a41
commit f2e3efcbd6
15 changed files with 4 additions and 7 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@@ -114,9 +114,6 @@
<file>data/images/network-activity.svg</file> <file>data/images/network-activity.svg</file>
<file>data/images/play.svg</file> <file>data/images/play.svg</file>
<file>data/images/pause.svg</file> <file>data/images/pause.svg</file>
<file>data/fonts/TitilliumWeb-Bold.ttf</file>
<file>data/fonts/TitilliumWeb-Regular.ttf</file>
<file>data/fonts/PathwayGothicOne-Regular.ttf</file>
<file>data/fonts/Roboto-Bold.ttf</file> <file>data/fonts/Roboto-Bold.ttf</file>
<file>data/fonts/Roboto-Medium.ttf</file> <file>data/fonts/Roboto-Medium.ttf</file>
<file>data/fonts/Roboto-Regular.ttf</file> <file>data/fonts/Roboto-Regular.ttf</file>

View File

@@ -55,7 +55,7 @@ SplashWidget::SplashWidget()
font.setPointSize( TomahawkUtils::defaultFontSize() - 1 ); font.setPointSize( TomahawkUtils::defaultFontSize() - 1 );
font.setBold( true ); font.setBold( true );
font.setFamily( "Titillium Web" ); font.setFamily( "Roboto" );
setFont( font ); setFont( font );
} }

View File

@@ -145,7 +145,7 @@ NetworkActivityWidget::NetworkActivityWidget( QWidget* parent )
} }
{ {
QFont f = d->ui->trendingTracksLabel->font(); QFont f = d->ui->trendingTracksLabel->font();
f.setFamily( "Pathway Gothic One" ); f.setFamily( "Roboto" );
QPalette p = d->ui->trendingTracksLabel->palette(); QPalette p = d->ui->trendingTracksLabel->palette();
p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION ); p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION );
@@ -159,7 +159,7 @@ NetworkActivityWidget::NetworkActivityWidget( QWidget* parent )
TomahawkStyle::stylePageFrame( d->ui->playlistsFrame ); TomahawkStyle::stylePageFrame( d->ui->playlistsFrame );
QFont f = d->ui->hotPlaylistsLabel->font(); QFont f = d->ui->hotPlaylistsLabel->font();
f.setFamily( "Pathway Gothic One" ); f.setFamily( "Roboto" );
QPalette p = d->ui->hotPlaylistsLabel->palette(); QPalette p = d->ui->hotPlaylistsLabel->palette();
p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION ); p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION );
@@ -205,7 +205,7 @@ NetworkActivityWidget::NetworkActivityWidget( QWidget* parent )
} }
{ {
QFont f = d->ui->trendingArtistsLabel->font(); QFont f = d->ui->trendingArtistsLabel->font();
f.setFamily( "Pathway Gothic One" ); f.setFamily( "Roboto" );
QPalette p = d->ui->trendingArtistsLabel->palette(); QPalette p = d->ui->trendingArtistsLabel->palette();
p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION ); p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION );