From 2ad3ca5d8a31e6b10243259bf7039654bf045db6 Mon Sep 17 00:00:00 2001 From: Tannoo Date: Tue, 18 Jul 2017 21:55:14 -0600 Subject: [PATCH] Bugfix (#7310) --- Marlin/ultralcd_impl_DOGM.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Marlin/ultralcd_impl_DOGM.h b/Marlin/ultralcd_impl_DOGM.h index 5d075124d..991183c2d 100644 --- a/Marlin/ultralcd_impl_DOGM.h +++ b/Marlin/ultralcd_impl_DOGM.h @@ -1001,7 +1001,7 @@ static void lcd_implementation_status_screen() { for (uint8_t j = 0; j < GRID_MAX_POINTS_Y; j++, y += pixels_per_y_mesh_pnt) if (PAGE_CONTAINS(y, y)) for (uint8_t i = 0, x = sx; i < GRID_MAX_POINTS_X; i++, x += pixels_per_x_mesh_pnt) - u8g.drawBox(sx, y, 1, 1); + u8g.drawBox(x, y, 1, 1); // Fill in the Specified Mesh Point