Multi device support: more GUIs enhancements

This commit is contained in:
f4exb 2016-05-15 10:11:22 +02:00
parent 2dcd887471
commit f0b7f6bf4e
1 changed files with 4 additions and 2 deletions

View File

@ -99,10 +99,12 @@ MainWindow::MainWindow(QWidget* parent) :
ui->tabInputsView->setStyleSheet("QWidget { background: rgb(44,44,44); } "
"QToolButton::checked { background: rgb(128,70,0); } "
"QComboBox::item:selected { color: rgb(255,140,0); }");
"QComboBox::item:selected { color: rgb(255,140,0); } "
"QTabBar::tab:selected { background: rgb(128,70,0); }");
ui->tabInputsSelect->setStyleSheet("QWidget { background: rgb(44,44,44); } "
"QToolButton::checked { background: rgb(128,70,0); } "
"QComboBox::item:selected { color: rgb(255,140,0); }");
"QComboBox::item:selected { color: rgb(255,140,0); } "
"QTabBar::tab:selected { background: rgb(128,70,0); }");
connect(&m_inputMessageQueue, SIGNAL(messageEnqueued()), this, SLOT(handleMessages()), Qt::QueuedConnection);