Merge pull request #3896 from huffman/fix-entity-selection

Fix entity tool selection when inactive
This commit is contained in:
Clément Brisset 2014-12-04 10:39:42 -08:00
commit a7a7ad775e

View file

@ -566,6 +566,10 @@ function mouseReleaseEvent(event) {
}
function mouseClickEvent(event) {
if (!isActive) {
return;
}
var result = findClickedEntity(event);
if (result === null) {
if (!event.isShifted) {