diff options
| author | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-19 03:00:34 -0400 | 
|---|---|---|
| committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2020-07-20 01:25:25 -0400 | 
| commit | d942472cce1f1fe6ab126ee787264f9f44c9ff65 (patch) | |
| tree | 087941be9789e0acff3b60a6aef2f454a6ceab9b | |
| parent | 7e01311061bde87a6cd6cf35fe3c9a5d5ee4709d (diff) | |
wait_tree: Include Midnight Blue dark themes
| -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 | 
