Fix being unable to select imported objects

This commit is contained in:
Skyler Lehmkuhl 2025-01-06 16:27:28 -05:00
parent b1be503de9
commit 6d6b7a2154
1 changed files with 20 additions and 16 deletions

View File

@ -3332,6 +3332,7 @@ class GraphicsObject {
}
if (mode == "select") {
for (let item of context.selection) {
if (!item) continue;
if (item.idx in this.currentFrame.keys) {
ctx.save();
ctx.strokeStyle = "#00ffff";
@ -5663,6 +5664,8 @@ function outliner(object = undefined) {
outliner.collapsed[object.idx] = !outliner.collapsed[object.idx];
} else {
outliner.active = object;
// Only do selection when this is pointing at the actual file
if (outliner.object==root) {
context.objectStack = []
let parent = object;
while (true) {
@ -5682,6 +5685,7 @@ function outliner(object = undefined) {
context.shapeselection = []
actions.select.create()
}
}
updateOutliner(); // Re-render the outliner
return;
}