Kaynağa Gözat

Fix crash on startupo when cursor set to "big"

David Robertson 5 yıl önce
ebeveyn
işleme
406faa36c3
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  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:
             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: