Преглед на файлове

wait_tree: Include Midnight Blue dark themes

Morph преди 6 години
родител
ревизия
d942472cce
променени са 1 файла, в които са добавени 4 реда и са изтрити 1 реда
  1. 4 1
      src/yuzu/debugger/wait_tree.cpp

+ 4 - 1
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