From ae49c7fb096b44229d46342f787a731e2993b029 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 29 Apr 2020 22:13:20 +0300 Subject: [PATCH] - added some log.debug's in Tool Cutout --- flatcamTools/ToolCutOut.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/flatcamTools/ToolCutOut.py b/flatcamTools/ToolCutOut.py index 99f4b218..c3cbfda9 100644 --- a/flatcamTools/ToolCutOut.py +++ b/flatcamTools/ToolCutOut.py @@ -464,11 +464,11 @@ class CutOut(FlatCAMTool): self.type_obj_radio.set_value('grb') def on_freeform_cutout(self): + log.debug("Cutout.on_freeform_cutout() was launched ...") # def subtract_rectangle(obj_, x0, y0, x1, y1): # pts = [(x0, y0), (x1, y0), (x1, y1), (x0, y1)] # obj_.subtract_polygon(pts) - name = self.obj_combo.currentText() # Get source object. @@ -651,6 +651,7 @@ class CutOut(FlatCAMTool): self.app.should_we_save = True def on_rectangular_cutout(self): + log.debug("Cutout.on_rectangular_cutout() was launched ...") # def subtract_rectangle(obj_, x0, y0, x1, y1): # pts = [(x0, y0), (x1, y0), (x1, y1), (x0, y1)]