From 41ec729d165f718542a1dd85e0ccdc7216a3ef51 Mon Sep 17 00:00:00 2001 From: Eric Myers Date: Mon, 12 Dec 2016 07:39:47 -0500 Subject: [PATCH 1/2] Update main.cpp Added #include to main.cpp for Mac --- apps/OpenSpace/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/apps/OpenSpace/main.cpp b/apps/OpenSpace/main.cpp index 49b47645a9..a84df70c2d 100644 --- a/apps/OpenSpace/main.cpp +++ b/apps/OpenSpace/main.cpp @@ -29,6 +29,7 @@ #include #include #include +#include #include From 48e77f6106979c9d2b602534e6bccebcbb1aadad Mon Sep 17 00:00:00 2001 From: noahdasanaike Date: Mon, 13 Feb 2017 16:12:35 -0500 Subject: [PATCH 2/2] Modified launcher checkboxes to have clearly defined check-indicators; (#228) green indicates a check, whereas red does not. --- apps/Launcher/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/Launcher/main.cpp b/apps/Launcher/main.cpp index c802f468cc..ecc15ca4ea 100644 --- a/apps/Launcher/main.cpp +++ b/apps/Launcher/main.cpp @@ -82,14 +82,14 @@ QCheckBox::indicator { } QCheckBox::indicator::unchecked { border: 1px solid #5A5A5A; - background: transparent; + background: #a10000; } QCheckBox::indicator:unchecked:hover { border: 1px solid #DDDDDD; } QCheckBox::indicator::checked { - border: 1px solid #AAAAAA; - background: #666666; + border: 1px solid #5A5A5A; + background: #8dc73f; } QCheckBox::indicator:checked:hover { border: 1px solid #DDDDDD;