diff --git a/theatre/studio/src/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.tsx b/theatre/studio/src/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.tsx index 492d673..0f704a4 100644 --- a/theatre/studio/src/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.tsx +++ b/theatre/studio/src/panels/SequenceEditorPanel/RightOverlay/PlayheadPositionPopover.tsx @@ -10,7 +10,7 @@ import {val} from '@theatre/dataverse' import type {Pointer} from '@theatre/dataverse' import clamp from 'lodash-es/clamp' -const greaterThanZero = (v: number) => isFinite(v) && v > 0 +const greaterThanOrEqualToZero = (v: number) => isFinite(v) && v >= 0 const Container = styled.div` display: flex; @@ -78,7 +78,7 @@ const PlayheadPositionPopover: React.FC<{