From ffa90950668a407336e1d9ad52a6e8886e9c1d60 Mon Sep 17 00:00:00 2001 From: Marius Stanciu Date: Wed, 27 Mar 2019 23:34:10 +0200 Subject: [PATCH] - fixed issue #278. Crash on name change in the Name field in the Selected Tab. --- FlatCAMObj.py | 2 +- README.md | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/FlatCAMObj.py b/FlatCAMObj.py index 9a45c171..f18ff35d 100644 --- a/FlatCAMObj.py +++ b/FlatCAMObj.py @@ -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 diff --git a/README.md b/README.md index 6129f0ed..4be8fd3b 100644 --- a/README.md +++ b/README.md @@ -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