Skip to content

Commit

Permalink
🚸 Fix Filament Change item position
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Feb 8, 2024
1 parent 580a35b commit 5f84e7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Marlin/src/lcd/menu/menu_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -326,7 +326,7 @@ void menu_main() {
SUBMENU(MSG_MOTION, menu_motion);
}

#if ALL(ADVANCED_PAUSE_FEATURE, DISABLE_ENCODER)
#if ENABLED(ADVANCED_PAUSE_FEATURE) && (!HAS_ENCODER_WHEEL || ENABLED(DISABLE_ENCODER))
FILAMENT_CHANGE_ITEM();
#endif

Expand Down Expand Up @@ -495,7 +495,7 @@ void menu_main() {
});
#endif

#if ENABLED(ADVANCED_PAUSE_FEATURE) && DISABLED(DISABLE_ENCODER)
#if ENABLED(ADVANCED_PAUSE_FEATURE) && HAS_ENCODER_WHEEL && DISABLED(DISABLE_ENCODER)
FILAMENT_CHANGE_ITEM();
#endif

Expand Down

0 comments on commit 5f84e7f

Please sign in to comment.