Skip to content

Commit

Permalink
ENABLED
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Sep 9, 2021
1 parent 0be801e commit a8ded98
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Marlin/src/lcd/e3v2/enhanced/dwin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2154,7 +2154,7 @@ void SetMoveZ() { HMI_value.axis = Z_AXIS; SetPFloatOnClick(Z_MIN_POS, Z_MAX_POS

#if HAS_HOTEND
void SetMoveE() {
#ifdef PREVENT_COLD_EXTRUSION
#if ENABLED(PREVENT_COLD_EXTRUSION)
if (thermalManager.tooColdToExtrude(0)) {
Popup_Window_ETempTooLow();
return;
Expand All @@ -2168,7 +2168,7 @@ void SetMoveZto0() {
char cmd[48] = "";
char str_1[5] = "", str_2[5] = "";
sprintf_P(cmd, PSTR("G28OXY\nG28Z\nG0X%sY%sF5000\nG0Z0F300"),
#ifdef MESH_BED_LEVELING
#if ENABLED(MESH_BED_LEVELING)
dtostrf(0, 1, 1, str_1),
dtostrf(0, 1, 1, str_2));
#else
Expand Down Expand Up @@ -3318,7 +3318,7 @@ void Draw_Motion_Menu() {
CurrentMenu->Draw();
}

#ifdef ADVANCED_PAUSE_FEATURE
#if ENABLED(ADVANCED_PAUSE_FEATURE)
void Draw_FilamentMan_Menu() {
checkkey = Menu;
if (FilamentMenu == nullptr) FilamentMenu = new MenuClass();
Expand All @@ -3336,7 +3336,7 @@ void Draw_Motion_Menu() {
}
#endif

#ifdef MESH_BED_LEVELING
#if ENABLED(MESH_BED_LEVELING)
void Draw_ManualMesh_Menu() {
checkkey = Menu;
if (ManualMesh == nullptr) ManualMesh = new MenuClass();
Expand Down

0 comments on commit a8ded98

Please sign in to comment.