Merge pull request #238 from OpenSpace/issue155

Launcher checkbox colors are green (not so bright) or grey (not red)
This commit is contained in:
Eric Myers
2017-02-21 19:48:26 -05:00
committed by GitHub
2 changed files with 3 additions and 4 deletions

View File

@@ -82,18 +82,17 @@ QCheckBox::indicator {
}
QCheckBox::indicator::unchecked {
border: 1px solid #5A5A5A;
background: #a10000;
background: #A0A0A0;
}
QCheckBox::indicator:unchecked:hover {
border: 1px solid #DDDDDD;
}
QCheckBox::indicator::checked {
border: 1px solid #5A5A5A;
background: #8dc73f;
background: #5AB65A;
}
QCheckBox::indicator:checked:hover {
border: 1px solid #DDDDDD;
background: #555555;
}
QGroupBox, QScrollArea {
border: 0px;

View File

@@ -134,7 +134,7 @@ MainWindow::MainWindow()
{
QBoxLayout* innerLayout = new QHBoxLayout;
QPushButton* cancelButton = new QPushButton("Cancel");
QPushButton* cancelButton = new QPushButton("Exit");
QObject::connect(
cancelButton, SIGNAL(clicked(bool)),
QApplication::instance(), SLOT(quit())