From 6bee693d0c4b431d5c1912102d7fbfecc6f11801 Mon Sep 17 00:00:00 2001 From: Alezia Kurdis <60075796+AleziaKurdis@users.noreply.github.com> Date: Mon, 11 Mar 2024 22:36:38 -0400 Subject: [PATCH] Add "Copy ID" --- scripts/system/create/entityList/entityList.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/system/create/entityList/entityList.js b/scripts/system/create/entityList/entityList.js index 749c030450..4332a15565 100644 --- a/scripts/system/create/entityList/entityList.js +++ b/scripts/system/create/entityList/entityList.js @@ -351,6 +351,8 @@ var EntityListTool = function(shouldUseEditTabletApp, selectionManager) { that.selectionManager.cutSelectedEntities(); } else if (data.type === "copy") { that.selectionManager.copySelectedEntities(); + } else if (data.type === "copyID") { + that.selectionManager.copyIdFromSelectedEntity(); } else if (data.type === "paste") { that.selectionManager.pasteEntities(); } else if (data.type === "duplicate") {