From abc355f52a03a2d349dd971f6d7955f9d8d3c8fc Mon Sep 17 00:00:00 2001 From: JannisX11 Date: Mon, 26 Oct 2020 21:24:47 +0100 Subject: [PATCH] Fix motion trail scale not updating with no selection --- js/animations/animation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/animations/animation.js b/js/animations/animation.js index e564daf..c144c57 100644 --- a/js/animations/animation.js +++ b/js/animations/animation.js @@ -1597,7 +1597,7 @@ const Animator = { } } Blockbench.on('update_camera_position', e => { - if (Animator.open && settings.motion_trails.value && Group.selected) { + if (Animator.open && settings.motion_trails.value && (Group.selected || Animator.motion_trail_lock)) { Animator.updateMotionTrailScale(); } })