From f7e26a074cad0a54b21980c965e861368a83fd14 Mon Sep 17 00:00:00 2001 From: Skyler Lehmkuhl Date: Thu, 5 Dec 2024 17:11:51 -0500 Subject: [PATCH] shift click to select multiple objects --- src/main.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/main.js b/src/main.js index 7e36c16..e86e731 100644 --- a/src/main.js +++ b/src/main.js @@ -2191,7 +2191,11 @@ function stage() { // dragging = true } child.saveState() - context.selection = [child] + if (e.shiftKey) { + context.selection.push(child) + } else { + context.selection = [child] + } context.dragging = true selected = true context.activeObject.currentFrame.saveState()