Browse Source

Fix clear of Z position last digit (#13731)

Antonio Pérez 6 years ago
parent
commit
bf28ad4b6c

+ 1
- 1
Marlin/src/lcd/HD44780/ultralcd_HD44780.cpp View File

@@ -517,7 +517,7 @@ FORCE_INLINE void _draw_axis_value(const AxisEnum axis, const char *value, const
517 517
     else {
518 518
       #if DISABLED(HOME_AFTER_DEACTIVATE, DISABLE_REDUCED_ACCURACY_WARNING)
519 519
         if (!TEST(axis_known_position, axis))
520
-          lcd_put_u8str_P(axis == Z_AXIS ? PSTR("      ") : PSTR("    "));
520
+          lcd_put_u8str_P(axis == Z_AXIS ? PSTR("       ") : PSTR("    "));
521 521
         else
522 522
       #endif
523 523
           lcd_put_u8str(value);

+ 1
- 1
Marlin/src/lcd/dogm/status_screen_DOGM.cpp View File

@@ -245,7 +245,7 @@ FORCE_INLINE void _draw_axis_value(const AxisEnum axis, const char *value, const
245 245
     else {
246 246
       #if DISABLED(HOME_AFTER_DEACTIVATE, DISABLE_REDUCED_ACCURACY_WARNING)
247 247
         if (!TEST(axis_known_position, axis))
248
-          lcd_put_u8str_P(axis == Z_AXIS ? PSTR("      ") : PSTR("    "));
248
+          lcd_put_u8str_P(axis == Z_AXIS ? PSTR("       ") : PSTR("    "));
249 249
         else
250 250
       #endif
251 251
           lcd_put_u8str(value);

Loading…
Cancel
Save