Explorar el Código

Fix crash on startupo when cursor set to "big"

David Robertson hace 5 años
padre
commit
406faa36c3
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      flatcamEditors/FlatCAMExcEditor.py

+ 1 - 1
flatcamEditors/FlatCAMExcEditor.py

@@ -2119,7 +2119,7 @@ class FlatCAMExcEditor(QtCore.QObject):
         if self.app.is_legacy is False:
         if self.app.is_legacy is False:
             self.shapes = self.app.plotcanvas.new_shape_collection(layers=1)
             self.shapes = self.app.plotcanvas.new_shape_collection(layers=1)
             if self.app.plotcanvas.big_cursor is True:
             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:
             else:
                 self.tool_shape = self.app.plotcanvas.new_shape_collection(layers=1)
                 self.tool_shape = self.app.plotcanvas.new_shape_collection(layers=1)
         else:
         else: