Fixed bizarre drawing issue with MapIcons atlas

This commit is contained in:
MattN-L
2024-03-15 19:19:17 -04:00
parent 5b240b670d
commit b942cb9f5b

View File

@@ -188,7 +188,7 @@ namespace PckStudio.Forms.Editor
{
g.ApplyConfig(graphicsConfig);
g.Clear(Color.Transparent);
g.DrawImage(_workingTexture, new Point(0, 0));
g.DrawImage(_workingTexture, 0, 0, _workingTexture.Width, _workingTexture.Height);
SolidBrush brush = new SolidBrush(Color.FromArgb(127, 255, 255, 255));