Skip to content

Commit

Permalink
🩹 Fix FTDI Eve Touch UI M84
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Feb 7, 2024
1 parent 2c8e7bd commit a321125
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Marlin/src/lcd/extui/ftdi_eve_touch_ui/generic/main_menu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ bool MainMenu::onTouchEnd(uint8_t tag) {
case 4: GOTO_SCREEN(MoveAxisScreen); break;
case 5:
injectCommands(F("M84 E"
TERN_(DISABLE_INACTIVE_X, " X")
TERN_(DISABLE_INACTIVE_Y, " Y")
TERN_(DISABLE_INACTIVE_Z, " Z")
TERN_(DISABLE_IDLE_X, " X")
TERN_(DISABLE_IDLE_Y, " Y")
TERN_(DISABLE_IDLE_Z, " Z")
));
break;
case 6: GOTO_SCREEN(TemperatureScreen); break;
Expand Down

0 comments on commit a321125

Please sign in to comment.