Fixed annotation parser for tracks with a start frame less than the first segment frame (#442)

* Fixed annotation parser for tracks with a start frame < first segment frame
* Changelog
main
Boris Sekachev 7 years ago committed by Nikita Manovich
parent 85dc4e4afb
commit 89464d5312

@ -19,6 +19,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Fixed incorrect width of shapes borders in some cases
- Fixed annotation parser for tracks with a start frame less than the first segment frame
### Security
-

@ -327,7 +327,7 @@ class AnnotationParser {
shapes: [],
};
if (path.frame < this._startFrame || path.frame > this._stopFrame) {
if (path.frame > this._stopFrame) {
continue;
}

Loading…
Cancel
Save