Sfoglia il codice sorgente

allow use aligndrill also for geometries

Kamil Sopko 10 anni fa
parent
commit
1d663c4efe
1 ha cambiato i file con 2 aggiunte e 3 eliminazioni
  1. 2 3
      FlatCAMApp.py

+ 2 - 3
FlatCAMApp.py

@@ -2263,9 +2263,8 @@ class App(QtCore.QObject):
             if obj is None:
             if obj is None:
                 return "Object not found: %s" % name
                 return "Object not found: %s" % name
 
 
-            if not isinstance(obj, FlatCAMGerber) and not isinstance(obj, FlatCAMExcellon):
-                return "ERROR: Only Gerber and Excellon objects can be used."
-
+            if not isinstance(obj, FlatCAMGeometry) and not isinstance(obj, FlatCAMGerber) and not isinstance(obj, FlatCAMExcellon):
+                return "ERROR: Only Gerber, Geometry and Excellon objects can be used."
 
 
             # Axis
             # Axis
             try:
             try: