diff --git a/CHANGELOG.md b/CHANGELOG.md index 4e816d7b..f5cbcf41 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ CHANGELOG for FlatCAM beta - updated the GCode generation section. Now the GCode is generated only once, when a CNCJob object was created. If the user chose to use the GCode Editor the GCode is only updated. If the user chose to include or remove the CNC Code Snippets, only then the GCode is regenerated. This has a higher impact on CNCJobs with very complex and long GCode. - in GCode Editor added handlers for the Insert Code buttons - in Project tab, when selecting multiple CNCJob objects, in the context menu the name of the Save entry change to Batch Save and those objects are all saved each in its own file +- added support for shortcut key F2 when in the Project Tab and that will allow the object renaming much faster 7.11.2020 diff --git a/appGUI/MainGUI.py b/appGUI/MainGUI.py index a2db6145..1ef5ec51 100644 --- a/appGUI/MainGUI.py +++ b/appGUI/MainGUI.py @@ -2720,6 +2720,10 @@ class MainGUI(QtWidgets.QMainWindow): if key == QtCore.Qt.Key_F1 or key == 'F1': webbrowser.open(self.app.manual_url) + # Rename Objects in the Project Tab + if key == QtCore.Qt.Key_F2: + self.app.collection.view.edit(self.app.collection.view.currentIndex()) + # Show shortcut list if key == QtCore.Qt.Key_F3 or key == 'F3': self.app.on_shortcut_list() @@ -4404,6 +4408,10 @@ class ShortcutsTab(QtWidgets.QWidget):