diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-19 09:00:34 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-20 07:25:25 +0200 |
commit | d942472cce1f1fe6ab126ee787264f9f44c9ff65 (patch) | |
tree | 087941be9789e0acff3b60a6aef2f454a6ceab9b /src | |
parent | qt-themes: Add Midnight Blue qdarkstyle theme (2.8.1) (diff) | |
download | yuzu-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 'src')
-rw-r--r-- | src/yuzu/debugger/wait_tree.cpp | 5 |
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 |