Skip to content

Commit a321125

Browse files
committed
🩹 Fix FTDI Eve Touch UI M84
1 parent 2c8e7bd commit a321125

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Marlin/src/lcd/extui/ftdi_eve_touch_ui/generic/main_menu.cpp

+3-3
Original file line numberDiff line numberDiff line change
@@ -113,9 +113,9 @@ bool MainMenu::onTouchEnd(uint8_t tag) {
113113
case 4: GOTO_SCREEN(MoveAxisScreen); break;
114114
case 5:
115115
injectCommands(F("M84 E"
116-
TERN_(DISABLE_INACTIVE_X, " X")
117-
TERN_(DISABLE_INACTIVE_Y, " Y")
118-
TERN_(DISABLE_INACTIVE_Z, " Z")
116+
TERN_(DISABLE_IDLE_X, " X")
117+
TERN_(DISABLE_IDLE_Y, " Y")
118+
TERN_(DISABLE_IDLE_Z, " Z")
119119
));
120120
break;
121121
case 6: GOTO_SCREEN(TemperatureScreen); break;

0 commit comments

Comments
 (0)