summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorph <39850852+Morph1984@users.noreply.github.com>2020-07-19 09:00:34 +0200
committerMorph <39850852+Morph1984@users.noreply.github.com>2020-07-20 07:25:25 +0200
commitd942472cce1f1fe6ab126ee787264f9f44c9ff65 (patch)
tree087941be9789e0acff3b60a6aef2f454a6ceab9b
parentqt-themes: Add Midnight Blue qdarkstyle theme (2.8.1) (diff)
downloadyuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.tar
yuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.tar.gz
yuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.tar.bz2
yuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.tar.lz
yuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.tar.xz
yuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.tar.zst
yuzu-d942472cce1f1fe6ab126ee787264f9f44c9ff65.zip
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{{
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