Fixes bug where pressing delete key while editing text will suggest... (#1083)
* Fixes bug where pressing delete key while editing text will suggest the deletion of selected map entities * Changed the DEL key to remove entities instead of delete them
This commit is contained in:
parent
4ff9619837
commit
153cc38d1a
1 changed files with 5 additions and 2 deletions
|
@ -32,8 +32,11 @@ const Listeners = {
|
||||||
JIT.escKeyHandler()
|
JIT.escKeyHandler()
|
||||||
break
|
break
|
||||||
case 46: // if DEL is pressed
|
case 46: // if DEL is pressed
|
||||||
e.preventDefault()
|
if(e.target.tagName !== "INPUT" && e.target.tagName !== "TEXTAREA" && (Selected.Nodes.length + Selected.Edges.length) > 0){
|
||||||
Control.deleteSelected()
|
e.preventDefault()
|
||||||
|
Control.removeSelectedNodes()
|
||||||
|
Control.removeSelectedEdges()
|
||||||
|
}
|
||||||
break
|
break
|
||||||
case 65: // if a or A is pressed
|
case 65: // if a or A is pressed
|
||||||
if (Create.isSwitchingSet && e.ctrlKey || e.metaKey) {
|
if (Create.isSwitchingSet && e.ctrlKey || e.metaKey) {
|
||||||
|
|
Loading…
Reference in a new issue