Skip to content

Commit e61a84a

Browse files
authored
🚸 Keep Filament Change near the top (MarlinFirmware#26172)
1 parent d8e73d3 commit e61a84a

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

Marlin/src/lcd/menu/menu_main.cpp

+4-8
Original file line numberDiff line numberDiff line change
@@ -332,14 +332,14 @@ void menu_main() {
332332
SUBMENU(MSG_MOTION, menu_motion);
333333
}
334334

335-
#if ALL(ADVANCED_PAUSE_FEATURE, DISABLE_ENCODER)
336-
FILAMENT_CHANGE_ITEM();
337-
#endif
338-
339335
#if HAS_CUTTER
340336
SUBMENU(MSG_CUTTER(MENU), STICKY_SCREEN(menu_spindle_laser));
341337
#endif
342338

339+
#if ENABLED(ADVANCED_PAUSE_FEATURE)
340+
FILAMENT_CHANGE_ITEM();
341+
#endif
342+
343343
#if HAS_TEMPERATURE
344344
SUBMENU(MSG_TEMPERATURE, menu_temperature);
345345
#endif
@@ -503,10 +503,6 @@ void menu_main() {
503503
});
504504
#endif
505505

506-
#if ENABLED(ADVANCED_PAUSE_FEATURE) && DISABLED(DISABLE_ENCODER)
507-
FILAMENT_CHANGE_ITEM();
508-
#endif
509-
510506
END_MENU();
511507
}
512508

0 commit comments

Comments
 (0)