Fix entity tool selection when inactive

This commit is contained in:
Ryan Huffman 2014-12-04 08:47:18 -08:00
parent d08337326c
commit 74acf9513b

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) {