- when pressing Escape in Geometry Editor it will automatically deselect any shape not only the currently selected tool.

This commit is contained in:
Marius Stanciu
2019-02-17 15:16:57 +02:00
committed by Marius S
parent b717b60d45
commit 8eff3206b2
2 changed files with 4 additions and 0 deletions

View File

@@ -1920,6 +1920,9 @@ class FlatCAMGUI(QtWidgets.QMainWindow):
self.app.inform.emit("[WARNING_NOTCL]Cancelled.")
self.app.geo_editor.delete_utility_geometry()
# deselect any shape that might be selected
self.app.geo_editor.selected = []
self.app.geo_editor.replot()
# self.select_btn.setChecked(True)
# self.on_tool_select('select')

View File

@@ -18,6 +18,7 @@ CAD program, and create G-Code for Isolation routing.
- fixed issue where after loading a project, if the default kind of CNCjob view is only 'cuts' the plot will revert to the 'all' type
- in Editors, if the modifier key set in Preferences (CTRL or SHIFT key) is pressed at the end of one tool operation it will automatically continue to that action until the modifier is no longer pressed when Select tool will be automatically selected.
- in Geometry Editor, on entry the notebook is automatically hidden and restored on Geometry Editor exit.
- when pressing Escape in Geometry Editor it will automatically deselect any shape not only the currently selected tool.
16.02.2019