Fixed dual-extruder in Lightweight UI.

- Moved bed icon down when the machine is configured with two nozzles.
This commit is contained in:
Marcio Teixeira 2018-02-20 13:34:34 -07:00
parent aada1e698f
commit 9d5968e8ec

View File

@ -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);