From db7acaa34a367c74c5551ab9649409fdadc7c5ae Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 9 Nov 2025 18:57:16 -0500 Subject: [PATCH] motion_report: Fix off-by-one error in live_extruder_velocity calculation Signed-off-by: Kevin O'Connor --- klippy/extras/motion_report.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/klippy/extras/motion_report.py b/klippy/extras/motion_report.py index 83dffa874..356d6f86a 100644 --- a/klippy/extras/motion_report.py +++ b/klippy/extras/motion_report.py @@ -241,7 +241,7 @@ class PrinterMotionReport: pos, velocity = ehandler.get_trapq_position(print_time) if pos is not None: live_pos[ea_index] = pos[0] - if ea_index == 4: + if ea_index == 3: evelocity = velocity # Report status self.last_status = dict(self.last_status)