3
0
Fork 0
mirror of https://github.com/lubosz/overte.git synced 2025-04-27 07:35:30 +02:00

Fix edit.js not being able to delete after creating entity

This fix puts focus back on the main window when creating an entity so that the user can use shortcuts like 'f' and 'delete'
This commit is contained in:
Ryan Huffman 2018-07-25 14:52:56 -07:00
parent 21d043d179
commit 0e0966004c

View file

@ -392,6 +392,8 @@ var toolBar = (function () {
entityListTool.sendUpdate();
selectionManager.setSelections([entityID]);
Window.setFocus();
return entityID;
}