Преглед на файлове

Issue #284 - Sanitize the entered Overlap value

Victor Benso преди 6 години
родител
ревизия
ece1538239
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      flatcamTools/ToolPaint.py

+ 1 - 1
flatcamTools/ToolPaint.py

@@ -743,7 +743,7 @@ class ToolPaint(FlatCAMTool, Gerber):
                                      "use a number."))
                 return
 
-        if not overlap < 1 and overlap >= 0:
+        if overlap >= 1 or overlap < 0:
             self.app.inform.emit(_("[ERROR_NOTCL] Overlap value must be between "
                                   "0 (inclusive) and 1 (exclusive), "))
             return