Merge branch 'main' into release
This commit is contained in:
commit
ea47f1d1c8
|
|
@ -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
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
|
|
|
||||||
|
|
@ -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 +=
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue