File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 77namespace 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
You can’t perform that action at this time.
0 commit comments