diff options
author | Zach Hilman <DarkLordZach@users.noreply.github.com> | 2020-01-22 18:39:21 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-22 18:39:21 -0500 |
commit | d8e0d839bd9c958233e6c57ff7e35b783daaf2d5 (patch) | |
tree | 696731d9e95c6aa6bd05ef98cd95be5c9e81d61f /src | |
parent | 79e0991d9bbe41065978bfcf7cc67523a1f04a9c (diff) | |
parent | c7055f3670f48b82e01d11b9ea2abf0117c3dfba (diff) |
Merge pull request #3339 from Simek/dark-theme-update
GUI: fix minor issues with dark themes + rename and reorder themes
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/uisettings.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/yuzu/uisettings.cpp b/src/yuzu/uisettings.cpp index 43bad9678..738c4b2fc 100644 --- a/src/yuzu/uisettings.cpp +++ b/src/yuzu/uisettings.cpp @@ -7,10 +7,10 @@ namespace UISettings { const Themes themes{{ - {"Default", "default"}, + {"Light", "default"}, + {"Light Colorful", "colorful"}, {"Dark", "qdarkstyle"}, - {"Colorful", "colorful"}, - {"Colorful Dark", "colorful_dark"}, + {"Dark Colorful", "colorful_dark"}, }}; Values values = {}; |