From 6f945ca990617f87c7ce40ef79ea555f6f9fe25e Mon Sep 17 00:00:00 2001 From: MyAngelKamikaze Date: Thu, 12 Oct 2023 01:07:45 +0900 Subject: [PATCH] fix quest view category colors --- ElectronicObserver/Window/Wpf/Quest/QuestItemViewModel.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ElectronicObserver/Window/Wpf/Quest/QuestItemViewModel.cs b/ElectronicObserver/Window/Wpf/Quest/QuestItemViewModel.cs index 2347e4ed3..bff0402a6 100644 --- a/ElectronicObserver/Window/Wpf/Quest/QuestItemViewModel.cs +++ b/ElectronicObserver/Window/Wpf/Quest/QuestItemViewModel.cs @@ -48,12 +48,12 @@ public class QuestItemViewModel // 出撃(2) 8 => Configuration.Config.UI.Quest_Type2Color.ToBrush(), // 出撃(3) - 9 => System.Drawing.Color.FromArgb(0xFF, 0xCC, 0xCC).ToBrush(), + 9 => Configuration.Config.UI.Quest_Type2Color.ToBrush(), // その他 - 10 => System.Drawing.Color.Transparent.ToBrush(), + 10 => Configuration.Config.UI.Quest_Type2Color.ToBrush(), 11 => Configuration.Config.UI.Quest_Type6Color.ToBrush(), - _ => System.Drawing.Color.Transparent.ToBrush() + _ => System.Drawing.Color.Transparent.ToBrush(), }; public SolidColorBrush QuestView_CategoryForeground => QuestView_Category switch {