Move Change Filament above Cooldown

This commit is contained in:
Scott Lahteine 2017-03-05 22:08:26 -06:00
parent 0c55095c5e
commit 9d0142e8ae

View File

@ -1374,6 +1374,14 @@ KeepDrawing:
//
#if TEMP_SENSOR_0 != 0
//
// Change filament
//
#if ENABLED(FILAMENT_CHANGE_FEATURE)
if (!thermalManager.tooColdToExtrude(active_extruder))
MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
#endif
//
// Cooldown
//
@ -1395,14 +1403,6 @@ KeepDrawing:
MENU_ITEM(function, MSG_PREHEAT_2, lcd_preheat_material2_hotend0);
#endif
//
// Change filament
//
#if ENABLED(FILAMENT_CHANGE_FEATURE)
if (!thermalManager.tooColdToExtrude(active_extruder))
MENU_ITEM(function, MSG_FILAMENTCHANGE, lcd_enqueue_filament_change);
#endif
#endif // TEMP_SENSOR_0 != 0
//