- some fixes in the Import Image Plugin

- made sure that the CNCJob objects made out of non-multi-toolGeometries are plotted correctly
This commit is contained in:
Marius Stanciu
2022-04-24 01:48:25 +03:00
committed by Marius
parent cb7bcf257f
commit 1972ed302f
4 changed files with 21 additions and 11 deletions

View File

@@ -179,6 +179,8 @@ class ToolImage(AppTool):
if response == bt_no:
self.app.inform.emit('[WARNING_NOTCL] %s' % _("Cancelled."))
return
self.app.inform.emit(_("Please be patient. Chromium is being downloaded in background.\n"
"The app will resume after it is installed."))
_filter = "Image Files(*.BMP *.PNG *.JPG *.JPEG);;" \
"Bitmap File (*.BMP);;" \
@@ -289,7 +291,7 @@ class ToolImage(AppTool):
1: {
'tooldia': tooldia,
'data': deepcopy(new_data),
'solid_geometry': geo_obj.solid_geometry
'solid_geometry': deepcopy(geo_obj.solid_geometry)
}
})
@@ -885,7 +887,7 @@ class ImageUI:
options_grid.addWidget(self.blur_lbl, 38, 0, 1, 2)
# Radius
self.blur_radius_lbl = FCLabel('%s' % _("Rounding"))
self.blur_radius_lbl = FCLabel('%s' % _("Radius"))
self.blur_radius_lbl.setToolTip(
_("Selective Gaussian blur preprocessing.")
)