Fix a progress bar condition

This commit is contained in:
Scott Lahteine 2018-02-23 19:42:01 -06:00
parent 6845f17fb2
commit 47619e4476

View File

@ -642,7 +642,7 @@ void lcd_status_screen() {
ENCODER_RATE_MULTIPLY(false);
#endif
#if ENABLED(LCD_SET_PROGRESS_MANUALLY) && (ENABLED(LCD_PROGRESS_BAR) || ENABLED(DOGLCD))
#if ENABLED(LCD_SET_PROGRESS_MANUALLY) && ENABLED(SDSUPPORT) && (ENABLED(LCD_PROGRESS_BAR) || ENABLED(DOGLCD))
// Progress bar % comes from SD when actively printing
if (IS_SD_PRINTING)
progress_bar_percent = card.percentDone();