Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
paissaheavyindustries committed Sep 25, 2023
2 parents f4141d1 + 7d7469c commit ca5dcf7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Triggernometry/Scarborough/ScarboroughText.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,9 +135,9 @@ internal System.Drawing.Color BackgroundColor
_BackgroundColor = value;
if (_BackgroundColor != System.Drawing.Color.Transparent)
{
_bgColor.R = _BackgroundColor.R;
_bgColor.G = _BackgroundColor.G;
_bgColor.B = _BackgroundColor.B;
_bgColor.R = _BackgroundColor.R / 255.0f;
_bgColor.G = _BackgroundColor.G / 255.0f;
_bgColor.B = _BackgroundColor.B / 255.0f;
}
else
{
Expand Down

0 comments on commit ca5dcf7

Please sign in to comment.