Skip to content

Commit 77af8d7

Browse files
authored
fix: hop size should be default to one step to allow frame-by-frame stepping (#9167)
1 parent a26b24b commit 77af8d7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

web/libs/editor/src/components/Timeline/Timeline.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const TimelineComponent: FC<TimelineProps> = ({
1818
length = 1024,
1919
position = 1,
2020
framerate = 24,
21-
altHopSize = 1,
22-
hopSize = altHopSize,
21+
hopSize = 1,
22+
altHopSize = hopSize,
2323
playing = false,
2424
buffering = false,
2525
fullscreen = false,

0 commit comments

Comments
 (0)