From e65c32301dc99268a4f0746581ef70fef0077a0a Mon Sep 17 00:00:00 2001 From: bobzel Date: Fri, 30 Oct 2020 13:02:34 -0400 Subject: fixed bookmarked views to not break when there's no current frame. (caused the bug with the large bookmark icon after having created and invoked a previous bookmark icon) --- src/client/views/collections/CollectionMenu.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/client/views/collections/CollectionMenu.tsx b/src/client/views/collections/CollectionMenu.tsx index 338b067fa..b44b85183 100644 --- a/src/client/views/collections/CollectionMenu.tsx +++ b/src/client/views/collections/CollectionMenu.tsx @@ -1324,5 +1324,5 @@ Scripting.addGlobal(function gotoFrame(doc: any, newFrame: any) { CollectionFreeFormDocumentView.setupKeyframes(childDocs, 0); } CollectionFreeFormDocumentView.updateKeyframe(childDocs, currentFrame || 0); - doc._currentFrame = Math.max(0, newFrame); + doc._currentFrame = newFrame === undefined ? 0 : Math.max(0, newFrame); }); -- cgit v1.2.3-70-g09d2