Skip to content

Commit

Permalink
Setting marker end time with clock button uses full precision
Browse files Browse the repository at this point in the history
This is similar to how start time setting already worked.
  • Loading branch information
MinasukiHikimuna committed Nov 2, 2024
1 parent e8125d0 commit 3e7cac8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const SceneMarkerForm: React.FC<ISceneMarkerForm> = ({
onReset={() =>
formik.setFieldValue(
"end_seconds",
Math.round(getPlayerPosition() ?? 0)
getPlayerPosition() ?? 0
)
}
error={error}
Expand Down

0 comments on commit 3e7cac8

Please sign in to comment.