diff options
Diffstat (limited to 'klippy/extras/display/display.py')
-rw-r--r-- | klippy/extras/display/display.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/klippy/extras/display/display.py b/klippy/extras/display/display.py index 3ab2d7f2..580f8b8d 100644 --- a/klippy/extras/display/display.py +++ b/klippy/extras/display/display.py @@ -142,12 +142,12 @@ class PrinterLCD: # Heaters if self.extruder0 is not None: info = self.extruder0.get_heater().get_status(eventtime) - self.lcd_chip.write_glyph(0, 0, 'nozzle') + self.lcd_chip.write_glyph(0, 0, 'extruder') self.draw_heater(2, 0, info) extruder_count = 1 if self.extruder1 is not None: info = self.extruder1.get_heater().get_status(eventtime) - self.lcd_chip.write_glyph(0, 1, 'nozzle') + self.lcd_chip.write_glyph(0, 1, 'extruder') self.draw_heater(2, 1, info) extruder_count = 2 if self.heater_bed is not None: |