diff options
author | Michael C <[email protected]> | 2021-08-04 16:04:22 -0400 |
---|---|---|
committer | Michael C <[email protected]> | 2021-08-04 16:04:22 -0400 |
commit | ef36c790924bee92376563c29ad04fcbd5c9e473 (patch) | |
tree | 91069b651c12793fb624e42bca7491af964afc7d | |
parent | c1898d0db7b080ff823682dd4031e6af78439b4f (diff) | |
download | SponsorBlock-ef36c790924bee92376563c29ad04fcbd5c9e473.tar.gz SponsorBlock-ef36c790924bee92376563c29ad04fcbd5c9e473.zip |
reduce precision of previewTime to fix #874
-rw-r--r-- | src/components/SponsorTimeEditComponent.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/SponsorTimeEditComponent.tsx b/src/components/SponsorTimeEditComponent.tsx index d03baa49..483ddbae 100644 --- a/src/components/SponsorTimeEditComponent.tsx +++ b/src/components/SponsorTimeEditComponent.tsx @@ -334,7 +334,7 @@ class SponsorTimeEditComponent extends React.Component<SponsorTimeEditProps, Spo const skipTime = sponsorTimes[index].segment[0]; - this.props.contentContainer().previewTime(skipTime + 0.000001, false); + this.props.contentContainer().previewTime(skipTime + 0.0001, false); } deleteTime(): void { |