diff --git a/App/SicUI/MainViewModel.cs b/App/SicUI/MainViewModel.cs index 2e318b5..4cfb734 100644 --- a/App/SicUI/MainViewModel.cs +++ b/App/SicUI/MainViewModel.cs @@ -1374,12 +1374,12 @@ namespace SicUI.Client if (menuInfo.System is "PM1" or "PM2") { var rect = FindVisualChildByName(container, "InnerBG"); - rect?.Fill = menuInfo.Selected + rect.Fill = menuInfo.Selected ? BgActiveContent : new SolidColorBrush((Color)ColorConverter.ConvertFromString("#FF346294")); var bgBorder = FindVisualChildByName(container, "BG"); - bgBorder?.Background = menuInfo.Selected + bgBorder.Background = menuInfo.Selected ? BgActiveContent : new SolidColorBrush((Color)ColorConverter.ConvertFromString("#FF346294"));