From 9d5968e8ecc70e4c54d5d3833d2d5be638dcfc91 Mon Sep 17 00:00:00 2001 From: Marcio Teixeira Date: Tue, 20 Feb 2018 13:34:34 -0700 Subject: [PATCH] Fixed dual-extruder in Lightweight UI. - Moved bed icon down when the machine is configured with two nozzles. --- .../lcd/dogm/ultralcd_impl_st7920_lite_status_screen_impl.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Marlin/src/lcd/dogm/ultralcd_impl_st7920_lite_status_screen_impl.h b/Marlin/src/lcd/dogm/ultralcd_impl_st7920_lite_status_screen_impl.h index db66fc12fc..92a6cf5934 100644 --- a/Marlin/src/lcd/dogm/ultralcd_impl_st7920_lite_status_screen_impl.h +++ b/Marlin/src/lcd/dogm/ultralcd_impl_st7920_lite_status_screen_impl.h @@ -268,9 +268,11 @@ void ST7920_Lite_Status_Screen::draw_static_elements() { draw_gdram_icon(1,1,nozzle_icon); #if EXTRUDERS == 2 draw_gdram_icon(1,2,nozzle_icon); + draw_gdram_icon(1,3,bed_icon); + #else + draw_gdram_icon(1,2,bed_icon); #endif draw_gdram_icon(6,2,feedrate_icon); - draw_gdram_icon(1,2,bed_icon); // Draw the initial fan icon draw_fan_icon(false);