Got the bed control to be in sync with the extruder controls

This commit is contained in:
Lars Brubaker 2017-09-11 10:54:46 -07:00
parent 0a569da477
commit 99d690e9b0
3 changed files with 104 additions and 76 deletions

View file

@ -96,7 +96,7 @@ namespace MatterHackers.MatterControl.CustomWidgets
{
double xPos = Width - ((i * pixelSkip + TotalAdds) % Width);
int inset = (int)((i % 2) == 0 ? Height / 6 : Height / 3);
graphics2D.Line(xPos, inset, xPos, Height - inset, new RGBA_Bytes(backgroundGridColor, 64));
graphics2D.Line(xPos, inset, xPos, Height - inset, new RGBA_Bytes(backgroundGridColor, 120));
}
for (int i = 0; i < Width - 1; i++)