1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-04-06 00:52:34 +02:00

Changed the font of the Connections label to mimic SourceTreeView.

This commit is contained in:
Teo Mrnjavac 2012-10-03 21:32:10 +02:00
parent 2162344173
commit 6de83b365d

View File

@ -55,10 +55,11 @@ AccountListWidget::AccountListWidget( AccountModelFactoryProxy* model, QWidget*
mainLayout->insertWidget( 0, separatorLine );
mainLayout->addSpacing( 6 );
QLabel *connectionsLabel = new QLabel( tr( "Connections" ), this );
QLabel *connectionsLabel = new QLabel( tr( "Connections" ).toUpper(), this );
QFont clFont = connectionsLabel->font();
clFont.setBold( true );
clFont.setPointSize( TomahawkUtils::defaultFontSize() + 3 );
connectionsLabel->setStyleSheet( "color: rgb( 99, 113, 128 );" );
clFont.setPointSize( TomahawkUtils::defaultFontSize() + 1 );
connectionsLabel->setFont( clFont );
connectionsLabel->setSizePolicy( QSizePolicy::Expanding, QSizePolicy::Preferred );