Make sure we invalidate after updating the image.

This commit is contained in:
Lars Brubaker 2015-04-13 11:22:51 -07:00
parent 7b458d7ce8
commit c70ecd0f6a
2 changed files with 2 additions and 1 deletions

View file

@ -93,6 +93,7 @@ namespace MatterHackers.MatterControl
}
Image.NewGraphics2D().Render(unScaledImage, 0, 0, 0, Image.Width / (double)unScaledImage.Width, Image.Height / (double)unScaledImage.Height);
Image.MarkImageChanged();
Invalidate();
}
}
}