- fixed crash on using shortcut for creating a new Document Object
This commit is contained in:
@@ -15,7 +15,7 @@ CHANGELOG for FlatCAM beta
|
|||||||
- In Excellon Object UI fixed the milling geometry generation
|
- In Excellon Object UI fixed the milling geometry generation
|
||||||
- updated the translations strings to the changes in the source code
|
- updated the translations strings to the changes in the source code
|
||||||
- some strings changed
|
- some strings changed
|
||||||
- made the Properties checkbox in the Object UI into a checkable button and added to it an icon
|
- fixed crash on using shortcut for creating a new Document Object
|
||||||
|
|
||||||
20.10.2020
|
20.10.2020
|
||||||
|
|
||||||
|
|||||||
@@ -2684,9 +2684,9 @@ class MainGUI(QtWidgets.QMainWindow):
|
|||||||
if key == QtCore.Qt.Key_B:
|
if key == QtCore.Qt.Key_B:
|
||||||
self.app.app_obj.new_gerber_object()
|
self.app.app_obj.new_gerber_object()
|
||||||
|
|
||||||
# New Geometry
|
# New Document Object
|
||||||
if key == QtCore.Qt.Key_D:
|
if key == QtCore.Qt.Key_D:
|
||||||
self.app.new_document_object()
|
self.app.app_obj.new_document_object()
|
||||||
|
|
||||||
# Copy Object Name
|
# Copy Object Name
|
||||||
if key == QtCore.Qt.Key_E:
|
if key == QtCore.Qt.Key_E:
|
||||||
|
|||||||
Reference in New Issue
Block a user