ctrl D for deselect

This commit is contained in:
David Back 2018-07-03 15:09:11 -07:00
parent 8f838397a4
commit 986864fc53

View file

@ -1782,7 +1782,7 @@ var keyReleaseEvent = function (event) {
// since sometimes our menu shortcut keys don't work, trap our menu items here also and fire the appropriate menu items
if (event.text === "DELETE") {
deleteSelectedEntities();
} else if (event.text === "ESC") {
} else if (event.text === 'd' && event.isControl) {
selectionManager.clearSelections();
} else if (event.text === "TAB") {
selectionDisplay.toggleSpaceMode();