summaryrefslogtreecommitdiff
path: root/src/yuzu/debugger/wait_tree.cpp
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-07-19 03:00:34 -0400
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-07-20 01:25:25 -0400
commitd942472cce1f1fe6ab126ee787264f9f44c9ff65 (patch)
tree087941be9789e0acff3b60a6aef2f454a6ceab9b /src/yuzu/debugger/wait_tree.cpp
parent7e01311061bde87a6cd6cf35fe3c9a5d5ee4709d (diff)
wait_tree: Include Midnight Blue dark themes
Diffstat (limited to 'src/yuzu/debugger/wait_tree.cpp')
-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{{
bool IsDarkTheme() {
const auto& theme = UISettings::values.theme;
- return theme == QStringLiteral("qdarkstyle") || theme == QStringLiteral("colorful_dark");
+ return theme == QStringLiteral("qdarkstyle") ||
+ theme == QStringLiteral("qdarkstyle_midnight_blue") ||
+ theme == QStringLiteral("colorful_dark") ||
+ theme == QStringLiteral("colorful_midnight_blue");
}
} // namespace