1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-11-30 07:17:59 +00:00

🩹 Fix ProUI + Leveling compile (#24508)

This commit is contained in:
Keith Bennett 2022-07-17 21:33:23 -07:00 committed by GitHub
parent 23926bb4c2
commit 6d83f7a579
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -99,7 +99,7 @@
#define HAS_ONESTEP_LEVELING 1 #define HAS_ONESTEP_LEVELING 1
#endif #endif
#if HAS_MESH || HAS_ONESTEP_LEVELING #if HAS_MESH || (HAS_LEVELING && HAS_ZOFFSET_ITEM)
#include "../../../feature/bedlevel/bedlevel.h" #include "../../../feature/bedlevel/bedlevel.h"
#include "bedlevel_tools.h" #include "bedlevel_tools.h"
#endif #endif
@ -2138,7 +2138,7 @@ void HomeZ() { queue.inject(F("G28Z")); }
); );
gcode.process_subcommands_now(cmd); gcode.process_subcommands_now(cmd);
#else #else
set_bed_leveling_enabled(false); TERN_(HAS_LEVELING, set_bed_leveling_enabled(false));
gcode.process_subcommands_now(F("G28O\nG0Z0F300\nM400")); gcode.process_subcommands_now(F("G28O\nG0Z0F300\nM400"));
#endif #endif
ui.reset_status(); ui.reset_status();
@ -3825,6 +3825,7 @@ void Draw_Steps_Menu() {
#endif // AUTO_BED_LEVELING_UBL #endif // AUTO_BED_LEVELING_UBL
#if HAS_MESH #if HAS_MESH
void Draw_MeshSet_Menu() { void Draw_MeshSet_Menu() {
checkkey = Menu; checkkey = Menu;
if (SetMenu(MeshMenu, GET_TEXT_F(MSG_MESH_LEVELING), 15)) { if (SetMenu(MeshMenu, GET_TEXT_F(MSG_MESH_LEVELING), 15)) {