From 059761b781823297d2e755a08fd30bbc5e799a3c Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Fri, 30 Mar 2018 14:09:25 +0200 Subject: [PATCH] Home only the head instead of homing both the head and the bed at the same time --- cura/PrinterOutput/GenericOutputController.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/cura/PrinterOutput/GenericOutputController.py b/cura/PrinterOutput/GenericOutputController.py index 7f24595edf..c445a0a71c 100644 --- a/cura/PrinterOutput/GenericOutputController.py +++ b/cura/PrinterOutput/GenericOutputController.py @@ -58,9 +58,7 @@ class GenericOutputController(PrinterOutputController): self._output_device.sendCommand("G90") def homeHead(self, printer): - self._output_device.sendCommand("G28 X") - self._output_device.sendCommand("G28 Y") - self._output_device.sendCommand("G28 Z") + self._output_device.sendCommand("G28 XY") def homeBed(self, printer): self._output_device.sendCommand("G28 Z")