Skip to content

Commit dcb7369

Browse files
committed
Update agent UI to match the web-UI
1 parent a79e597 commit dcb7369

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Protest-Agent/Checkbox.cs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
namespace ProtestAgent {
88
public partial class Checkbox : UserControl {
99
private static readonly Pen selectPen = new Pen(Color.FromArgb(255, 102, 0), 6);
10-
private static readonly SolidBrush backgroundBrush = new SolidBrush(Color.FromArgb(128, 128, 128));
10+
private static readonly SolidBrush backgroundBrush = new SolidBrush(Color.FromArgb(96, 96, 96));
1111
private static readonly SolidBrush foregroundBrush = new SolidBrush(Color.FromArgb(32, 32, 32));
1212
private static readonly SolidBrush onBrush = new SolidBrush(Color.FromArgb(255, 102, 0));
13-
private static readonly SolidBrush offBrush = new SolidBrush(Color.FromArgb(88, 88, 88));
13+
private static readonly SolidBrush offBrush = new SolidBrush(Color.FromArgb(144, 144, 144));
1414

15-
private GraphicsPath path;
16-
private GraphicsPath pathOn;
17-
private GraphicsPath pathOff;
15+
private readonly GraphicsPath path;
16+
private readonly GraphicsPath pathOn;
17+
private readonly GraphicsPath pathOff;
1818

1919
public event EventHandler OnChange;
2020

0 commit comments

Comments
 (0)