Parcourir la source

Fix condition on tool change filament swap menu (#13190)

InsanityAutomation il y a 6 ans
Parent
révision
ca7b2f574f
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1
    1
      Marlin/src/lcd/menu/menu_configuration.cpp

+ 1
- 1
Marlin/src/lcd/menu/menu_configuration.cpp Voir le fichier

@@ -105,7 +105,7 @@ static void lcd_factory_settings() {
105 105
   void menu_tool_change() {
106 106
     START_MENU();
107 107
     MENU_BACK(MSG_MAIN);
108
-    #if ENABLED(TOOLCHANGE_PARK)
108
+    #if ENABLED(TOOLCHANGE_FILAMENT_SWAP)
109 109
       MENU_ITEM_EDIT(float3, MSG_FILAMENT_SWAP_LENGTH, &toolchange_settings.swap_length, 0, 200);
110 110
       MENU_MULTIPLIER_ITEM_EDIT(int4, MSG_SINGLENOZZLE_RETRACT_SPD, &toolchange_settings.retract_speed, 10, 5400);
111 111
       MENU_MULTIPLIER_ITEM_EDIT(int4, MSG_SINGLENOZZLE_PRIME_SPD, &toolchange_settings.prime_speed, 10, 5400);

Chargement…
Annuler
Enregistrer