mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-08-31 09:32:03 +02:00
Try a different label font since Fauna One wasn't so great on Windows
This commit is contained in:
@@ -67,13 +67,16 @@ BasicHeader::BasicHeader( QWidget* parent )
|
||||
m_descriptionLabel->setPalette( pal );
|
||||
|
||||
QFont font = m_captionLabel->font();
|
||||
font.setPointSize( TomahawkUtils::defaultFontSize() + 4 );
|
||||
|
||||
font.setPointSize( TomahawkUtils::defaultFontSize() + 10 );
|
||||
font.setBold( true );
|
||||
font.setFamily( "Titillium Web" );
|
||||
|
||||
m_captionLabel->setFont( font );
|
||||
m_captionLabel->setElideMode( Qt::ElideRight );
|
||||
m_captionLabel->setAlignment( Qt::AlignTop | Qt::AlignLeft );
|
||||
|
||||
font.setPointSize( TomahawkUtils::defaultFontSize() + 1 );
|
||||
font.setPointSize( TomahawkUtils::defaultFontSize() + 2 );
|
||||
font.setBold( false );
|
||||
m_descriptionLabel->setFont( font );
|
||||
m_descriptionLabel->setAlignment( Qt::AlignTop | Qt::AlignLeft );
|
||||
|
@@ -122,7 +122,7 @@ Dashboard::Dashboard( QWidget* parent )
|
||||
|
||||
{
|
||||
QFont f = ui->label->font();
|
||||
f.setFamily( "Fauna One" );
|
||||
f.setFamily( "Pathway Gothic One" );
|
||||
|
||||
QPalette p = ui->label->palette();
|
||||
p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION );
|
||||
@@ -135,7 +135,7 @@ Dashboard::Dashboard( QWidget* parent )
|
||||
|
||||
{
|
||||
QFont f = ui->playlistLabel->font();
|
||||
f.setFamily( "Fauna One" );
|
||||
f.setFamily( "Pathway Gothic One" );
|
||||
|
||||
QPalette p = ui->playlistLabel->palette();
|
||||
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );
|
||||
|
@@ -171,7 +171,7 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
|
||||
|
||||
{
|
||||
QFont f = ui->label->font();
|
||||
f.setFamily( "Fauna One" );
|
||||
f.setFamily( "Pathway Gothic One" );
|
||||
|
||||
QPalette p = ui->label->palette();
|
||||
p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION );
|
||||
@@ -184,8 +184,8 @@ ArtistInfoWidget::ArtistInfoWidget( const Tomahawk::artist_ptr& artist, QWidget*
|
||||
|
||||
{
|
||||
QFont f = ui->albumLabel->font();
|
||||
f.setFamily( "Fauna One" );
|
||||
|
||||
f.setFamily( "Pathway Gothic One" );
|
||||
|
||||
QPalette p = ui->albumLabel->palette();
|
||||
p.setColor( QPalette::Foreground, TomahawkStyle::HEADER_TEXT );
|
||||
|
||||
|
@@ -118,7 +118,7 @@ TrackInfoWidget::TrackInfoWidget( const Tomahawk::query_ptr& query, QWidget* par
|
||||
|
||||
{
|
||||
QFont f = ui->label->font();
|
||||
f.setFamily( "Fauna One" );
|
||||
f.setFamily( "Pathway Gothic One" );
|
||||
|
||||
QPalette p = ui->label->palette();
|
||||
p.setColor( QPalette::Foreground, TomahawkStyle::PAGE_CAPTION );
|
||||
|
Reference in New Issue
Block a user