Update mask brush to be semi-transparent instead of solid color.

This commit is contained in:
Zsolt Zitting
2022-11-15 23:31:54 -07:00
parent f6235bfbb6
commit 0ebb186d60
+1 -1
View File
@@ -27,7 +27,7 @@ namespace BAKKA_Editor
public Pen TickMediumPen { get; set; }
public Pen TickMajorPen { get; set; }
public SolidBrush HoldBrush { get; set; } = new SolidBrush(Color.FromArgb(170, Color.Yellow));
public SolidBrush MaskBrush { get; set; } = new SolidBrush(Color.DimGray);
public SolidBrush MaskBrush { get; set; } = new SolidBrush(Color.FromArgb(90, Color.Black));
public SolidBrush BackgroundBrush { get; set; }
public Pen HighlightPen { get; set; }
public Pen FlairPen { get; set; }