From 30477f49f846c77193418f31653cb692bcdf58b2 Mon Sep 17 00:00:00 2001 From: Eric Myers Date: Sun, 19 Feb 2017 09:13:45 -0500 Subject: [PATCH] * Launcher checkbox colors are green (not so bright) or grey (not red) * Changed "Cancel" button to "Exit" --- apps/Launcher/main.cpp | 5 ++--- apps/Launcher/mainwindow.cpp | 2 +- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/apps/Launcher/main.cpp b/apps/Launcher/main.cpp index 5b17ef774d..ccf862687c 100644 --- a/apps/Launcher/main.cpp +++ b/apps/Launcher/main.cpp @@ -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; diff --git a/apps/Launcher/mainwindow.cpp b/apps/Launcher/mainwindow.cpp index e9b65ccbf4..d1f6012f14 100644 --- a/apps/Launcher/mainwindow.cpp +++ b/apps/Launcher/mainwindow.cpp @@ -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())