1
0
mirror of https://github.com/tomahawk-player/tomahawk.git synced 2025-03-24 09:49:42 +01:00

Try to make the separator lines less ugly.

This commit is contained in:
Teo Mrnjavac 2012-10-20 19:05:18 +02:00
parent dfa7a842f1
commit 4a91be6fe5
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ AccountListWidget::AccountListWidget( AccountModelFactoryProxy* model, QWidget*
QWidget* separatorLine = new QWidget( this );
separatorLine->setFixedHeight( 1 );
separatorLine->setContentsMargins( 0, 0, 0, 0 );
separatorLine->setStyleSheet( "QWidget { border-top: 1px solid black; }" );
separatorLine->setStyleSheet( "QWidget { border-top: 1px solid rgb( 140, 140, 140 ); }" ); //from ProxyStyle
mainLayout->insertWidget( 0, separatorLine );
mainLayout->addSpacing( 6 );

View File

@ -74,7 +74,7 @@ AccountsToolButton::AccountsToolButton( QWidget* parent )
QWidget *separatorLine = new QWidget( w );
separatorLine->setFixedHeight( 1 );
separatorLine->setContentsMargins( 0, 0, 0, 0 );
separatorLine->setStyleSheet( "QWidget { border-top: 1px solid black; }" );
separatorLine->setStyleSheet( "QWidget { border-top: 1px solid rgb( 140, 140, 140 ); }" ); //from ProxyStyle
wMainLayout->addWidget( separatorLine );
QPushButton *settingsButton = new QPushButton( w );