Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev/1.3.17 forward ports #1886

Merged
merged 14 commits into from
Dec 5, 2024
Prev Previous commit
Next Next commit
Expand traces by default
bctcvai committed Nov 26, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit df66760973a03b89dbc23c0da489e513b92c1a59
5 changes: 5 additions & 0 deletions ui/src/js/annotation/annotation-multi.js
Original file line number Diff line number Diff line change
@@ -829,6 +829,11 @@ export class AnnotationMulti extends TatorElement {

this._videoTimeline.init(0, this._timeStore.getLastGlobalFrame());
this._entityTimeline.init(0, this._timeStore.getLastGlobalFrame());
this._displayTimelineLabels = true;
this._entityTimeline.showFocus(
this._displayTimelineLabels,
this._videos[this._primaryVideoIndex].currentFrame()
);

this._slider.setAttribute("min", 0);
this._slider.setAttribute("max", this._timeStore.getLastGlobalFrame());
6 changes: 6 additions & 0 deletions ui/src/js/annotation/annotation-player.js
Original file line number Diff line number Diff line change
@@ -940,6 +940,12 @@ export class AnnotationPlayer extends TatorElement {

this._videoTimeline.init(0, this._timeStore.getLastGlobalFrame());
this._entityTimeline.init(0, this._timeStore.getLastGlobalFrame());
this._displayTimelineLabels = true;
this._entityTimeline.showFocus(
this._displayTimelineLabels,
this._video.currentFrame()
);


this._slider.setAttribute("min", 0);
this._slider.setAttribute("max", this._timeStore.getLastGlobalFrame());