diff options
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{{ | |||
| 38 | 38 | ||
| 39 | bool IsDarkTheme() { | 39 | bool 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 |