Skip to content

Commit

Permalink
Merge pull request #735 from Pizt0lmnk/develop
Browse files Browse the repository at this point in the history
Replace Color.TransparentBlack with Color.Transparent
  • Loading branch information
lithiumtoast committed Jun 3, 2021
2 parents 52f99ff + e795403 commit c3d4c9f
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -29,7 +29,7 @@ public class TiledMapImageContent
[XmlIgnore]
public Color TransparentColor
{
get => RawTransparentColor == string.Empty ? Color.TransparentBlack : ColorHelper.FromHex(RawTransparentColor);
get => RawTransparentColor == string.Empty ? Color.Transparent : ColorHelper.FromHex(RawTransparentColor);
set => RawTransparentColor = ColorHelper.ToHex(value);
}

Expand All @@ -41,4 +41,4 @@ public override string ToString()
return Source;
}
}
}
}

0 comments on commit c3d4c9f

Please sign in to comment.