Encoder events should not skip stripes
This commit is contained in:
parent
22881f38b9
commit
b031d28ebf
@ -3005,12 +3005,15 @@ void lcd_update() {
|
|||||||
|
|
||||||
encoderPosition += (encoderDiff * encoderMultiplier) / ENCODER_PULSES_PER_STEP;
|
encoderPosition += (encoderDiff * encoderMultiplier) / ENCODER_PULSES_PER_STEP;
|
||||||
encoderDiff = 0;
|
encoderDiff = 0;
|
||||||
#if ENABLED(DOGLCD)
|
|
||||||
drawing_screen = false; // refresh the complete screen for a encoder change (different menu-item/value)
|
|
||||||
#endif
|
|
||||||
}
|
}
|
||||||
return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
|
return_to_status_ms = ms + LCD_TIMEOUT_TO_STATUS;
|
||||||
lcdDrawUpdate = LCDVIEW_REDRAW_NOW;
|
lcdDrawUpdate =
|
||||||
|
#if ENABLED(DOGLCD)
|
||||||
|
LCDVIEW_CALL_REDRAW_NEXT
|
||||||
|
#else
|
||||||
|
LCDVIEW_REDRAW_NOW
|
||||||
|
#endif
|
||||||
|
;
|
||||||
}
|
}
|
||||||
#endif // ULTIPANEL
|
#endif // ULTIPANEL
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user