[MWB] fix machine connection status highlighting (#26439)

This commit is contained in:
Andrey Nekrasov
2023-05-29 16:18:57 +02:00
committed by GitHub
parent 61073158c2
commit ecdf4217e4
2 changed files with 2 additions and 1 deletions

View File

@@ -42,7 +42,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
private static readonly Dictionary<SocketStatus, Brush> StatusColors = new Dictionary<SocketStatus, Brush>()
{
{ SocketStatus.NA, new SolidColorBrush(ColorHelper.FromArgb(0x71, 0x71, 0x71, 0x71)) },
{ SocketStatus.NA, new SolidColorBrush(ColorHelper.FromArgb(0, 0x71, 0x71, 0x71)) },
{ SocketStatus.Resolving, new SolidColorBrush(Colors.Yellow) },
{ SocketStatus.Connecting, new SolidColorBrush(Colors.Orange) },
{ SocketStatus.Handshaking, new SolidColorBrush(Colors.Blue) },