From 5908059cd9a1d93cc9d3a89d98775344cbfd9775 Mon Sep 17 00:00:00 2001 From: Jonathan Neuhauser Date: Sat, 15 Jan 2022 08:42:05 +0100 Subject: [PATCH] fix #276 --- gcodetools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcodetools.py b/gcodetools.py index ddfcb27d..ef8bdd2d 100755 --- a/gcodetools.py +++ b/gcodetools.py @@ -2825,7 +2825,7 @@ class Gcodetools(inkex.EffectExtension): # In/out paths: # TODO move it to the bottom ################################################################################ - def plasma_prepare_path(self): + def tab_plasma_prepare_path(self): self.get_info_plus() def add_arc(sp1, sp2, end=False, l=10., r=10.): @@ -2867,7 +2867,7 @@ class Gcodetools(inkex.EffectExtension): or not self.options.in_out_path and not self.options.plasma_prepare_corners) and not self.options.in_out_path_do_not_add_reference_point): self.options.orientation_points_count = "in-out reference point" - self.orientation() + #self.orientation() if self.options.in_out_path or self.options.plasma_prepare_corners: self.set_markers() -- GitLab