diff options
| author | bobzel <zzzman@gmail.com> | 2022-03-08 22:11:24 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2022-03-08 22:11:24 -0500 |
| commit | 5d50e0673fde8aabb2d87a75624b40d3b9c65df3 (patch) | |
| tree | 7a005eed62f829a685e819229f37bea470264aaa /src/client/views/collections/CollectionStackedTimeline.tsx | |
| parent | d010c3875b4a6b113f4f2099f201abbf1b8d4eb0 (diff) | |
fixed following a link to a video segment that triggers a navigation back to the source of the link
Diffstat (limited to 'src/client/views/collections/CollectionStackedTimeline.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionStackedTimeline.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackedTimeline.tsx b/src/client/views/collections/CollectionStackedTimeline.tsx index 89da6692a..74bfc3a88 100644 --- a/src/client/views/collections/CollectionStackedTimeline.tsx +++ b/src/client/views/collections/CollectionStackedTimeline.tsx @@ -721,7 +721,7 @@ class StackedTimelineAnchor extends React.Component<StackedTimelineAnchorProps> DocListCast(this.props.mark.links).length && time > NumCast(this.props.mark[this.props.startTag]) && time < NumCast(this.props.mark[this.props.endTag]) && - this._lastTimecode < NumCast(this.props.mark[this.props.startTag]) + this._lastTimecode < NumCast(this.props.mark[this.props.startTag]) - 1e-5 ) { LinkManager.FollowLink( undefined, |
