Skip to content

Commit

Permalink
fix quest view category colors
Browse files Browse the repository at this point in the history
  • Loading branch information
myangelkamikaze committed Oct 11, 2023
1 parent 918ee61 commit 6f945ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ElectronicObserver/Window/Wpf/Quest/QuestItemViewModel.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 6f945ca

Please sign in to comment.