From 2b916e79c761bd91cbfa9135a62743d0270e16ad Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Sun, 29 Mar 2020 23:14:26 -0400 Subject: [PATCH] bltouch: Call sync_print_time() on multi_probe_end() Be sure to fully raise the probe prior to starting any future toolhead movements in the multi_probe_end() case. Signed-off-by: Kevin O'Connor --- klippy/extras/bltouch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/klippy/extras/bltouch.py b/klippy/extras/bltouch.py index a3c2d955..dbef49e9 100644 --- a/klippy/extras/bltouch.py +++ b/klippy/extras/bltouch.py @@ -163,6 +163,7 @@ class BLTouchEndstopWrapper: if self.stow_on_each_sample: return self.raise_probe() + self.sync_print_time() self.multi = 'OFF' def probe_prepare(self): if self.multi == 'OFF' or self.multi == 'FIRST':