From 7976c7a68a16978d24d4d65aea90b45686dcdeca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B8rn=20Sandvik=20Nilsson?= Date: Fri, 17 Jul 2015 10:25:13 +0200 Subject: [PATCH] Added missing help text for the new parameter --- FlatCAMApp.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/FlatCAMApp.py b/FlatCAMApp.py index 6a375039..21c51782 100644 --- a/FlatCAMApp.py +++ b/FlatCAMApp.py @@ -2429,13 +2429,14 @@ class App(QtCore.QObject): 'drillcncjob': { 'fcn': drillcncjob, 'help': "Drill CNC job.\n" + - "> drillcncjob -tools -drillz -travelz -feedrate -outname \n" + + "> drillcncjob -tools -drillz -travelz -feedrate -outname [-toolchange (int)] \n" + " name: Name of the object\n" + " tools: Comma separated indexes of tools (example: 1,3 or 2)\n" + " drillz: Drill depth into material (example: -2.0)\n" + " travelz: Travel distance above material (example: 2.0)\n" + " feedrate: Drilling feed rate\n" + - " outname: Name of object to create\n" + " outname: Name of object to create\n" + + " toolchange: Enable tool changes (example: 1)\n" }, 'scale': { 'fcn': lambda name, factor: self.collection.get_by_name(str(name)).scale(float(factor)),