- fixed issue with arrays of items could not be added in the Gerber/Excellon Editor when a translation is used
- fixed issue in the Excellon Editor where the Space key did not toggle the direction of the array of drills - combed the application strings all over the app and trimmed them up until those starting with letter 'O' - updated the translation strings
This commit is contained in:
committed by
Marius Stanciu
parent
e5569360a7
commit
90e3b26b68
@@ -600,7 +600,7 @@ class ToolCalibration(AppTool):
|
||||
self.cal_object = model_index.internalPointer().obj
|
||||
except Exception as e:
|
||||
log.debug("ToolCalibration.on_cal_button_click() --> %s" % str(e))
|
||||
self.app.inform.emit('[WARNING_NOTCL] %s' % _("There is no FlatCAM object selected..."))
|
||||
self.app.inform.emit('[WARNING_NOTCL] %s' % _("No object is selected."))
|
||||
return 'fail'
|
||||
|
||||
obj_name = self.cal_object.options["name"] + "_calibrated"
|
||||
@@ -696,7 +696,7 @@ class ToolCalibration(AppTool):
|
||||
obj_name = obj_name
|
||||
|
||||
if obj is None:
|
||||
self.app.inform.emit('[WARNING_NOTCL] %s' % _("There is no FlatCAM object selected..."))
|
||||
self.app.inform.emit('[WARNING_NOTCL] %s' % _("No object is selected."))
|
||||
log.debug("ToolCalibration.new_calibrated_object() --> No object to calibrate")
|
||||
return 'fail'
|
||||
|
||||
|
||||
Reference in New Issue
Block a user