summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Morph2020-07-19 03:00:34 -0400
committerGravatar Morph2020-07-20 01:25:25 -0400
commitd942472cce1f1fe6ab126ee787264f9f44c9ff65 (patch)
tree087941be9789e0acff3b60a6aef2f454a6ceab9b /src
parentqt-themes: Add Midnight Blue qdarkstyle theme (2.8.1) (diff)
downloadyuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.tar.gz
yuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.tar.xz
yuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.zip
wait_tree: Include Midnight Blue dark themes
Diffstat (limited to '')
-rw-r--r--src/yuzu/debugger/wait_tree.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/yuzu/debugger/wait_tree.cpp b/src/yuzu/debugger/wait_tree.cpp
index f391a41a9..3439cb333 100644
--- a/src/yuzu/debugger/wait_tree.cpp
+++ b/src/yuzu/debugger/wait_tree.cpp
@@ -38,7 +38,10 @@ constexpr std::array<std::array<Qt::GlobalColor, 2>, 10> WaitTreeColors{{
38 38
39bool IsDarkTheme() { 39bool IsDarkTheme() {
40 const auto& theme = UISettings::values.theme; 40 const auto& theme = UISettings::values.theme;
41 return theme == QStringLiteral("qdarkstyle") || theme == QStringLiteral("colorful_dark"); 41 return theme == QStringLiteral("qdarkstyle") ||
42 theme == QStringLiteral("qdarkstyle_midnight_blue") ||
43 theme == QStringLiteral("colorful_dark") ||
44 theme == QStringLiteral("colorful_midnight_blue");
42} 45}
43 46
44} // namespace 47} // namespace