From 406faa36c37784e900ef590f49fbfc8e186f3f82 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Sun, 3 May 2020 04:18:40 +0100 Subject: [PATCH] Fix crash on startupo when cursor set to "big" --- flatcamEditors/FlatCAMExcEditor.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flatcamEditors/FlatCAMExcEditor.py b/flatcamEditors/FlatCAMExcEditor.py index 49dc5eb5..820e5eb8 100644 --- a/flatcamEditors/FlatCAMExcEditor.py +++ b/flatcamEditors/FlatCAMExcEditor.py @@ -2119,7 +2119,7 @@ class FlatCAMExcEditor(QtCore.QObject): if self.app.is_legacy is False: self.shapes = self.app.plotcanvas.new_shape_collection(layers=1) if self.app.plotcanvas.big_cursor is True: - self.tool_shape = self.app.plotcanvas.new_shape_collection(layers=1, line_width=2) + self.tool_shape = self.app.plotcanvas.new_shape_collection(layers=1) else: self.tool_shape = self.app.plotcanvas.new_shape_collection(layers=1) else: