Merge branch 'main' into release

This commit is contained in:
Skyler Lehmkuhl 2025-01-12 23:26:20 -05:00
commit ea47f1d1c8
3 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,7 @@
# 0.7.5-alpha:
Bugfixes:
- Fix errors when files refer to now nonexistant frames
# 0.7.4-alpha: # 0.7.4-alpha:
Bugfixes: Bugfixes:
- Fix timeline collapse on imported objects - Fix timeline collapse on imported objects

View File

@ -1,7 +1,7 @@
{ {
"$schema": "https://schema.tauri.app/config/2", "$schema": "https://schema.tauri.app/config/2",
"productName": "Lightningbeam", "productName": "Lightningbeam",
"version": "0.7.4-alpha", "version": "0.7.5-alpha",
"identifier": "org.lightningbeam.core", "identifier": "org.lightningbeam.core",
"build": { "build": {
"frontendDist": "../src" "frontendDist": "../src"

View File

@ -5949,6 +5949,8 @@ function stage() {
).points; ).points;
} else { } else {
for (let child of context.selection) { for (let child of context.selection) {
if (!context.activeObject.currentFrame) continue;
if (!context.activeObject.currentFrame.keys) continue;
context.activeObject.currentFrame.keys[child.idx].x += context.activeObject.currentFrame.keys[child.idx].x +=
mouse.x - context.lastMouse.x; mouse.x - context.lastMouse.x;
context.activeObject.currentFrame.keys[child.idx].y += context.activeObject.currentFrame.keys[child.idx].y +=