- updated the language strings

This commit is contained in:
Marius Stanciu
2021-11-21 01:20:23 +02:00
committed by Marius
parent b494669ca0
commit 5f55471aaa
24 changed files with 19546 additions and 19441 deletions

View File

@@ -4940,8 +4940,9 @@ class App(QtCore.QObject):
self.plotcanvas.draw_workspace(pagesize=self.defaults['global_workspaceT'])
# adjust the grid values on the main toolbar
val_x = float(self.defaults['global_gridx']) * factor
val_y = val_x if self.ui.grid_gap_link_cb.isChecked() else float(self.defaults['global_gridx']) * factor
val_x = round(float(self.defaults['global_gridx']) * factor, self.decimals)
val_y = val_x if self.ui.grid_gap_link_cb.isChecked() else \
round(float(self.defaults['global_gridy']) * factor, self.decimals)
# update Object UI forms
current = self.collection.get_active()