diff --git a/apps/Launcher/main.cpp b/apps/Launcher/main.cpp index 943e22f7c7..e48dad2abc 100644 --- a/apps/Launcher/main.cpp +++ b/apps/Launcher/main.cpp @@ -83,18 +83,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; diff --git a/apps/Launcher/mainwindow.cpp b/apps/Launcher/mainwindow.cpp index 5d4489d47a..b7d7084189 100644 --- a/apps/Launcher/mainwindow.cpp +++ b/apps/Launcher/mainwindow.cpp @@ -136,7 +136,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())