From ececd1c60f132b97348569e7ac37de794a85c072 Mon Sep 17 00:00:00 2001 From: David Back Date: Fri, 2 Feb 2018 17:14:48 -0800 Subject: [PATCH] fix loop index change --- scripts/system/libraries/entitySelectionTool.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/system/libraries/entitySelectionTool.js b/scripts/system/libraries/entitySelectionTool.js index 27f464058f..31df28c61b 100644 --- a/scripts/system/libraries/entitySelectionTool.js +++ b/scripts/system/libraries/entitySelectionTool.js @@ -182,7 +182,7 @@ SelectionManager = (function() { var brn = properties.boundingBox.brn; var tfl = properties.boundingBox.tfl; - for (var i = 0; i < that.selections.length; i++) { + for (var i = 1; i < that.selections.length; i++) { properties = Entities.getEntityProperties(that.selections[i]); var bb = properties.boundingBox; brn.x = Math.min(bb.brn.x, brn.x);