diff --git a/extensions/fablabchemnitz/hatch_fill/hatch_fill.inx b/extensions/fablabchemnitz/hatch_fill/hatch_fill.inx index 174e969e..a1683d50 100644 --- a/extensions/fablabchemnitz/hatch_fill/hatch_fill.inx +++ b/extensions/fablabchemnitz/hatch_fill/hatch_fill.inx @@ -7,13 +7,13 @@ - 3.0 + 3.0 45 false true - 3.0 + 3.0 true - 1.0 + 1.0 3.0 diff --git a/extensions/fablabchemnitz/slic3r_stl_input/slic3r_stl_input.py b/extensions/fablabchemnitz/slic3r_stl_input/slic3r_stl_input.py index 3ca2adf8..4042ce36 100644 --- a/extensions/fablabchemnitz/slic3r_stl_input/slic3r_stl_input.py +++ b/extensions/fablabchemnitz/slic3r_stl_input/slic3r_stl_input.py @@ -112,6 +112,10 @@ class SlicerSTLInput(inkex.EffectExtension): def effect(self): args = self.options + + if not os.path.exists(args.slic3r_cmd): + inkex.utils.debug("Slic3r not found. Please define a correct location.") + exit(1) if args.min_fill_opacity > args.max_fill_opacity: inkex.utils.debug("Min fill opacity may not be larger than max fill opacity. Adjust and try again!")