- fixed issue #278. Crash on name change in the Name field in the Selected Tab.

This commit is contained in:
Marius Stanciu 2019-03-27 23:34:10 +02:00
parent d12a6759c7
commit ffa9095066
2 changed files with 2 additions and 1 deletions

View File

@ -178,7 +178,7 @@ class FlatCAMObj(QtCore.QObject):
self.muted_ui = False
def on_name_activate(self):
old_name = copy.copy(self.options["name"])
old_name = copy(self.options["name"])
new_name = self.ui.name_entry.get_value()
# update the SHELL auto-completer model data

View File

@ -13,6 +13,7 @@ CAD program, and create G-Code for Isolation routing.
- added new feature: user can delete apertures in Advanced mode and then create a new FlatCAM Gerber object
- progress in German translation. About 27% done.
- fixed issue #278. Crash on name change in the Name field in the Selected Tab.
26.03.2019