diff --git a/Cura/gui/printWindow.py b/Cura/gui/printWindow.py index 82898195..274d6bff 100644 --- a/Cura/gui/printWindow.py +++ b/Cura/gui/printWindow.py @@ -68,6 +68,8 @@ class PrintCommandButton(buttons.GenBitmapButton): self.Bind(wx.EVT_BUTTON, self.OnClick) def OnClick(self, e): + if self.parent.printIdx != None: + return; self.parent.sendCommand("G91") self.parent.sendCommand(self.command) self.parent.sendCommand("G90")