From 3e585267e4db09be79a755d0f0b093bdde922911 Mon Sep 17 00:00:00 2001 From: Kasen IO Date: Thu, 18 Jun 2020 01:11:07 -0400 Subject: [PATCH] Fix gizmo size issue post auto-resize of a new model. --- scripts/system/create/edit.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scripts/system/create/edit.js b/scripts/system/create/edit.js index 82d6ee9953..ab21c5776c 100644 --- a/scripts/system/create/edit.js +++ b/scripts/system/create/edit.js @@ -621,6 +621,10 @@ var toolBar = (function () { dimensions: naturalDimensions }) dimensionsCheckCallback(); + // We want to update the selection manager again since the script has moved on without us. + selectionManager.clearSelections(this); + entityListTool.sendUpdate(); + selectionManager.setSelections([entityID], this); return; } Script.setTimeout(entityIsLoadedCheck, LOADED_CHECK_INTERVAL);