Merge pull request #960 from hgiesel/easegraphfix2

Fix ease graph building wrong query omitting ease edge cases
This commit is contained in:
Damien Elmes 2021-01-31 09:19:30 +10:00 committed by GitHub
commit 4307badc95
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -38,7 +38,7 @@ function makeQuery(start: number, end: number): string {
}
const fromQuery = `"prop:ease>=${start / 100}"`;
const tillQuery = `"prop:ease<${end / 100}"`;
const tillQuery = `"prop:ease<${(end + 1) / 100}"`;
return `${fromQuery} AND ${tillQuery}`;
}