Skip to content

Commit

Permalink
🩹 Fix active extruder indicator (MarlinFirmware#26834)
Browse files Browse the repository at this point in the history
* 🩹 No active extruder when any of several incompatible features are enabled
  • Loading branch information
thisiskeithb authored and RPGFabi committed May 5, 2024
1 parent a9c6d87 commit cbab115
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/lcd/dogm/status_screen_DOGM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,7 @@ FORCE_INLINE void _draw_centered_temp(const celsius_t temp, const uint8_t tx, co

} // PAGE_CONTAINS

#if HAS_MULTI_EXTRUDER && DISABLED(SLIM_LCD_MENUS)
#if HAS_MULTI_EXTRUDER && NONE(SLIM_LCD_MENUS, STATUS_HOTEND_NUMBERLESS, SINGLENOZZLE)
if (active_extruder == heater_id)
u8g.drawBitmapP(_MAX(0, STATUS_HOTEND_X(heater_id) - 6), STATUS_HEATERS_Y + 3, 1, 5, status_active_extruder_indicator_bmp);
#endif
Expand Down

0 comments on commit cbab115

Please sign in to comment.