diff options
author | Bartosz Kaszubowski <gosimek@gmail.com> | 2020-01-22 21:12:45 +0100 |
---|---|---|
committer | Bartosz Kaszubowski <gosimek@gmail.com> | 2020-01-22 21:12:45 +0100 |
commit | 9a22b6dced0e6ca9746269db5389fa8bff534ac2 (patch) | |
tree | 0dd72afb08967ac4263aaebb3b3a293cf5d5b7df /src | |
parent | 79e0991d9bbe41065978bfcf7cc67523a1f04a9c (diff) |
GUI: fix minor issues with dark themes
GUI: 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 = {}; |