fixed some graphic styles in MacOSX

This commit is contained in:
Luis Ángel San Martín
2015-01-19 21:49:27 +01:00
parent d01e49dd3f
commit bb2e55d0b6
6 changed files with 14 additions and 13 deletions

View File

@ -118,7 +118,11 @@ void YACReaderTitledToolBar::addSepartor()
QWidget * w = new QWidget(this);
w->setFixedSize(1,14);
#ifdef Q_OS_MAC
w->setStyleSheet("QWidget {background-color:#AFAFAF;}");
#else
w->setStyleSheet("QWidget {background-color:#6F6F6F;}");
#endif
mainLayout->addSpacing(10);
mainLayout->addWidget(w);