From 4a91be6fe570015f54126a0857154176ac8d8bfb Mon Sep 17 00:00:00 2001 From: Teo Mrnjavac Date: Sat, 20 Oct 2012 19:05:18 +0200 Subject: [PATCH] Try to make the separator lines less ugly. --- src/widgets/AccountListWidget.cpp | 2 +- src/widgets/AccountsToolButton.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/widgets/AccountListWidget.cpp b/src/widgets/AccountListWidget.cpp index 5bef763d0..5dd3e3e31 100644 --- a/src/widgets/AccountListWidget.cpp +++ b/src/widgets/AccountListWidget.cpp @@ -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 ); diff --git a/src/widgets/AccountsToolButton.cpp b/src/widgets/AccountsToolButton.cpp index 48bf4a79f..1e3d83ae8 100644 --- a/src/widgets/AccountsToolButton.cpp +++ b/src/widgets/AccountsToolButton.cpp @@ -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 );