- in Geometry Editor, in Copy Tool added the 2D copy-as-array feature therefore finishing this editor plugin upgrade

This commit is contained in:
Marius Stanciu
2022-04-18 01:23:01 +03:00
committed by Marius
parent 3af1b189c5
commit e2770776b7
7 changed files with 341 additions and 91 deletions

View File

@@ -46,7 +46,7 @@ class ToolsPanelizePrefGroupUI(OptionsGroupUI):
self.spacing_columns_label = FCLabel('%s:' % _("Spacing cols"))
self.spacing_columns_label.setToolTip(
_("Spacing between columns of the desired panel.\n"
_("Spacing between columns.\n"
"In current units.")
)
param_grid.addWidget(self.spacing_columns_label, 0, 0)
@@ -60,7 +60,7 @@ class ToolsPanelizePrefGroupUI(OptionsGroupUI):
self.spacing_rows_label = FCLabel('%s:' % _("Spacing rows"))
self.spacing_rows_label.setToolTip(
_("Spacing between rows of the desired panel.\n"
_("Spacing between rows.\n"
"In current units.")
)
param_grid.addWidget(self.spacing_rows_label, 2, 0)
@@ -73,7 +73,7 @@ class ToolsPanelizePrefGroupUI(OptionsGroupUI):
self.columns_label = FCLabel('%s:' % _("Columns"))
self.columns_label.setToolTip(
_("Number of columns of the desired panel")
_("Number of columns")
)
param_grid.addWidget(self.columns_label, 4, 0)
param_grid.addWidget(self.pcolumns, 4, 1)
@@ -85,7 +85,7 @@ class ToolsPanelizePrefGroupUI(OptionsGroupUI):
self.rows_label = FCLabel('%s:' % _("Rows"))
self.rows_label.setToolTip(
_("Number of rows of the desired panel")
_("Number of rows")
)
param_grid.addWidget(self.rows_label, 6, 0)
param_grid.addWidget(self.prows, 6, 1)