mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-08-10 08:28:22 +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
|
// 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") {
|
if (event.text === "DELETE") {
|
||||||
deleteSelectedEntities();
|
deleteSelectedEntities();
|
||||||
} else if (event.text === "ESC") {
|
} else if (event.text === 'd' && event.isControl) {
|
||||||
selectionManager.clearSelections();
|
selectionManager.clearSelections();
|
||||||
} else if (event.text === "TAB") {
|
} else if (event.text === "TAB") {
|
||||||
selectionDisplay.toggleSpaceMode();
|
selectionDisplay.toggleSpaceMode();
|
||||||
|
|
Loading…
Reference in a new issue