mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
ctrl D for deselect
This commit is contained in:
parent
8f838397a4
commit
986864fc53
1 changed files with 1 additions and 1 deletions
|
@ -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();
|
||||
|
|
Loading…
Reference in a new issue