Browse Source

Fix babystep menu display

Scott Lahteine 7 years ago
parent
commit
a277b43e30
2 changed files with 3 additions and 6 deletions
  1. 0
    3
      Marlin/language.h
  2. 3
    3
      Marlin/ultralcd.cpp

+ 0
- 3
Marlin/language.h View File

198
 #define MSG_ERR_COLD_EXTRUDE_STOP           " cold extrusion prevented"
198
 #define MSG_ERR_COLD_EXTRUDE_STOP           " cold extrusion prevented"
199
 #define MSG_ERR_LONG_EXTRUDE_STOP           " too long extrusion prevented"
199
 #define MSG_ERR_LONG_EXTRUDE_STOP           " too long extrusion prevented"
200
 #define MSG_TOO_COLD_FOR_M600               "M600 Hotend too cold to change filament"
200
 #define MSG_TOO_COLD_FOR_M600               "M600 Hotend too cold to change filament"
201
-#define MSG_BABYSTEPPING_X                  "Babystepping X"
202
-#define MSG_BABYSTEPPING_Y                  "Babystepping Y"
203
-#define MSG_BABYSTEPPING_Z                  "Babystepping Z"
204
 #define MSG_SERIAL_ERROR_MENU_STRUCTURE     "Error in menu structure"
201
 #define MSG_SERIAL_ERROR_MENU_STRUCTURE     "Error in menu structure"
205
 
202
 
206
 #define MSG_ERR_EEPROM_WRITE                "Error writing to EEPROM!"
203
 #define MSG_ERR_EEPROM_WRITE                "Error writing to EEPROM!"

+ 3
- 3
Marlin/ultralcd.cpp View File

1014
     }
1014
     }
1015
 
1015
 
1016
     #if ENABLED(BABYSTEP_XY)
1016
     #if ENABLED(BABYSTEP_XY)
1017
-      void _lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEPPING_X)); }
1018
-      void _lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEPPING_Y)); }
1017
+      void _lcd_babystep_x() { _lcd_babystep(X_AXIS, PSTR(MSG_BABYSTEP_X)); }
1018
+      void _lcd_babystep_y() { _lcd_babystep(Y_AXIS, PSTR(MSG_BABYSTEP_Y)); }
1019
       void lcd_babystep_x() { lcd_goto_screen(_lcd_babystep_x); babysteps_done = 0; defer_return_to_status = true; }
1019
       void lcd_babystep_x() { lcd_goto_screen(_lcd_babystep_x); babysteps_done = 0; defer_return_to_status = true; }
1020
       void lcd_babystep_y() { lcd_goto_screen(_lcd_babystep_y); babysteps_done = 0; defer_return_to_status = true; }
1020
       void lcd_babystep_y() { lcd_goto_screen(_lcd_babystep_y); babysteps_done = 0; defer_return_to_status = true; }
1021
     #endif
1021
     #endif
1093
 
1093
 
1094
     #else // !BABYSTEP_ZPROBE_OFFSET
1094
     #else // !BABYSTEP_ZPROBE_OFFSET
1095
 
1095
 
1096
-      void _lcd_babystep_z() { _lcd_babystep(Z_AXIS, PSTR(MSG_BABYSTEPPING_Z)); }
1096
+      void _lcd_babystep_z() { _lcd_babystep(Z_AXIS, PSTR(MSG_BABYSTEP_Z)); }
1097
       void lcd_babystep_z() { lcd_goto_screen(_lcd_babystep_z); babysteps_done = 0; defer_return_to_status = true; }
1097
       void lcd_babystep_z() { lcd_goto_screen(_lcd_babystep_z); babysteps_done = 0; defer_return_to_status = true; }
1098
 
1098
 
1099
     #endif // !BABYSTEP_ZPROBE_OFFSET
1099
     #endif // !BABYSTEP_ZPROBE_OFFSET

Loading…
Cancel
Save